From: Cbm Rich Date: Sun, 16 Nov 2014 00:08:00 +0000 (+0100) Subject: Update from Genf X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=9e36f42a771b9bc5ca36a0ee2c1b1b9731a0c2c8;p=daqtools.git Update from Genf --- diff --git a/thresholds/thresholds_automatic_jan.pl b/thresholds/thresholds_automatic_jan.pl new file mode 100755 index 0000000..1cc3c24 --- /dev/null +++ b/thresholds/thresholds_automatic_jan.pl @@ -0,0 +1,327 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +use Data::Dumper; + +use lib "/home/hadaq/trbsoft/daqtools/dmon/code"; +use Dmon; + +use Getopt::Long; +use Time::HiRes qw(time usleep); +use Log::Log4perl qw(get_logger); +use List::Util qw(min max); +use HADES::TrbNet; + +# use IPC::ShareLite qw( :lock ); + +use constant false => 0; +use constant true => 1; + +# my $share = IPC::ShareLite->new( +# -key => 3214, +# -create => 'yes', +# -destroy => 'yes' +# ) or die $!; +# +# $share->store("dummy text"); +#print "store res: $r\n"; + +my $hitregister = 0xc001; + +my $interval_step = 0x0400; +my $start_value = 0x7000; + +my $sleep_time = 1.0; +my $accepted_dark_rate = 150; +my $number_of_iterations = 50; # at least 15 are recommended + +my $endpoint = 0x0303; +my $mode = "padiwa"; +my $help = ""; +my $offset = 0; +my $polarity = 1; +my @channels = (); +my $channel32 = undef; +my $opt_finetune = false; + +our $chain = 0; + +my $result = GetOptions ( + "h|help" => \$help, + "c|chain=i" => \$chain, + "e|endpoint=s" => \$endpoint, + "m|mode=s" => \$mode, + "p|polarity=i" => \$polarity, + "o|offset=s" => \$offset, + "32|32channel" => \$channel32, + "f|finetune" => \$opt_finetune, + "l|sleep=f" => \$sleep_time, + ); + +if($help) { + usage(); + exit; +} + + +if ($offset) { + if($offset =~ /^0x/) { + $offset = hex($offset); + } + else { + die "wrong number format for offset parameter: \"$offset\"" unless $offset =~ /^\d+$/; + $offset = int($offset); + } + + #print "called with offset: $offset\n"; +} + +die "wrong number format for chain parameter: \"$chain\"" unless $chain =~ /^\d+$/; + +if($endpoint !~ /^0x/) { + print "wrong format for enpoint number $endpoint, should be 0x0 - 0xffff, use hex notation with 0x\n"; + usage(); + exit; +} +$endpoint = hex($endpoint); + + + + +# go to the right position + +my $hitchannel_multiplicator = 1; + +if($channel32) { + $hitregister += 32*$chain; + $hitchannel_multiplicator = 2; +} +else { + $hitregister += 16*$chain; +} + +Log::Log4perl->init("logger_threshold.conf"); + +my $logger = get_logger("padiwa_threshold.log"); +my $logger_data = get_logger("padiwa_threshold_data"); + + +my $startup_str = sprintf "startup with: endpoint: $endpoint, chain: $chain, offset: $offset, polarity: $polarity"; +$logger->info($startup_str); + +trb_init_ports() or die trb_strerror(); + +my @current_thresh = ($start_value) x 16; +my @best_thresh = (0) x 16; +my @hit_diff = (0) x 16; +my @crossed_thresh = (0) x 16; +my @interval_step = ($interval_step) x 16; +my @make_it_quiet; +my $rh_res; +my $old_rh_res; + +if ($opt_finetune == true) { + my $ra_thresh = read_thresholds("padiwa", $chain); + @current_thresh = @$ra_thresh; + print Dumper \@current_thresh; + + $interval_step = 4; + +} + + +# foreach my $i (0..15) { + +@make_it_quiet = (0) x 16; +# $make_it_quiet[$i] = 0; +my $hit_diff = 0; + +my $number_of_steps = 0; + + + +while ($number_of_steps < $number_of_iterations) { + $number_of_steps++; + + if ($mode eq "padiwa") { + write_thresholds($mode, $chain, \@current_thresh); + # wait settling time, experimentally determined to 0.04 seconds + usleep(50000); + $old_rh_res = trb_register_read_mem($endpoint, $hitregister, 0, 32); + usleep($sleep_time*1E6); + $rh_res = trb_register_read_mem($endpoint, $hitregister, 0, 32); + + + foreach my $i (0..15) { + $interval_step = $interval_step[$i]; + + if ($make_it_quiet[$i]) { + $make_it_quiet[$i] = 0; + print STDERR "---\n"; + next; + } + + my $cur_hitreg = $rh_res->{$endpoint}->[$i*$hitchannel_multiplicator]; + my $old_hitreg = $old_rh_res->{$endpoint}->[$i*$hitchannel_multiplicator] & 0x00ffffff; + (my $hits, my $static_value) = ($cur_hitreg & 0x00ffffff , ($cur_hitreg & 0x80000000) >> 31); + $hit_diff = $hits - $old_hitreg; + $hit_diff += 2**24 if $hit_diff < 0; + $hit_diff[$i] = $hit_diff; + + if($number_of_steps > $number_of_iterations - 10) { + # select best threshold, closest from bottom + if( $hit_diff[$i] <= $accepted_dark_rate + && $best_thresh[$i] <= $current_thresh[$i] + && $static_value == (($polarity==1)?0:1)) { + $best_thresh[$i] = $current_thresh[$i]; + } + + #delete bogus entries + if($hit_diff[$i] >= $accepted_dark_rate && $current_thresh[$i] < $best_thresh[$i]) { + $best_thresh[$i] = $current_thresh[$i]; + } + } + + my $direction = 1; + if ($static_value != (($polarity==1) ? 0 : 1)) { + $current_thresh[$i] -= $interval_step * 2 * $polarity; + $interval_step = int($interval_step/1.8)||1; + } + elsif ($hit_diff > $accepted_dark_rate + && $hit_diff < 10000 ) { + $current_thresh[$i] -= max($interval_step * $polarity , 0x10); + $interval_step = max(int($interval_step/2),4); + } + elsif ($hit_diff > $accepted_dark_rate ) { + $current_thresh[$i] -= max($interval_step * 2 * $polarity , 0x50); + $interval_step = max(int($interval_step/2),0x10); + if ($hit_diff > 20000) { + $make_it_quiet[$i] = 1; + } + } + else { + $current_thresh[$i] += $interval_step * $polarity; + } + +# $interval_step = 8 if($interval_step < 8); +# $interval_step = 50 if($interval_step <= 50 && $direction == -1); + + $interval_step[$i] = $interval_step; + +# $current_thresh[$i] += $interval_step * $direction; + + my $str = + sprintf ("iter: %4i, endpoint: 0x%04x, chain: %2d, channel: %2d, hits: %8d ", + $number_of_steps,$endpoint, $chain, $i, $hits); + $str.= "static: $static_value, diff: " . + sprintf("%8d, dir: %2d", $hit_diff, $direction) . " , " . + "new thresh: " . sprintf("0x%x", $current_thresh[$i]) . + ", step_size: " . sprintf ("0x%04x best: 0x%04x", $interval_step[$i], $best_thresh[$i]); + + $logger->info($str); + print STDERR $str."\n"; + } # end of loop over 15 channel + + } # end of if padiwa + + } #end of loop over steps + + +map { $_-= $offset } @best_thresh; +write_thresholds($mode, $chain, \@best_thresh); + +my $uid; +foreach my $i (reverse (0..3)) { + $rh_res = Dmon::PadiwaSendCmd(0x10000000 | $i * 0x10000, $endpoint, $chain); + $uid .= sprintf("%04x", $rh_res->{$endpoint} &0xffff); +} + +my $str; + +foreach my $i (0..15) { + $logger_data->info(sprintf "endpoint: 0x%04x, chain: %02d, channel: %2d threshold: 0x%04x, uid: %s", $endpoint, $chain, $i, $best_thresh[$i], $uid ); +} + + +exit; + + +sub read_thresholds { + (my $mode, my $chain) = @_; + + my @thresh = (); + + foreach my $current_channel (0..15) { + + my $command; + my $fixed_bits; + my $shift_bits; + + if($mode eq "padiwa") { + $fixed_bits = 0x00000000; + $shift_bits = 0; + } + elsif ($mode eq "cbmrich") { + die "readout of channels in cbmrich is not implemented"; + $fixed_bits = 0x00300000; + $shift_bits = 4; + } + + $command = $fixed_bits | ($current_channel << 16) ; + my $rh_res = Dmon::PadiwaSendCmd($endpoint, $chain, $command); + push (@thresh , $rh_res->{$endpoint}); + } + + + + return \@thresh; + +} + + +sub write_thresholds { + (my $mode, my $chain, my $ra_thresh) = @_; + + my @commands; + foreach my $current_channel (0..15) { + + my $command; + my $fixed_bits; + my $shift_bits; + + if($mode eq "padiwa") { + $fixed_bits = 0x00800000; + $shift_bits = 0; + } + elsif ($mode eq "cbmrich") { + $fixed_bits = 0x00300000; + $shift_bits = 4; + } + my $thresh = $ra_thresh->[$current_channel]; + if($make_it_quiet[$current_channel]) {$thresh = 0x0000;} + push(@commands,$fixed_bits | ($current_channel << 16) | ($thresh << $shift_bits)); + } + Dmon::PadiwaSendCmdMultiple(\@commands,$endpoint,$chain,5E3); +} + +sub usage { + + print < --chain= [--offset=] + [--help] [--mode=<"padiwa"|"cbmrich">] [--32channel] + +example: + +thresholds_automatic.pl --endpoint=0x303 --chain=0 --offset=0x10 --32channel +or in short +thresholds_automatic.pl -e 0x303 -o 0x10 -c 0 + +currently only mode "padiwa" is implemented. + +polarity: tells what the status of bit 32 is, when the thresholds are set to 0 +32channel: when set the tool assums a TDC with 32 channels, leading and trailing channels use two channels + +EOF + +} diff --git a/thresholds/thresholds_new.pl b/thresholds/thresholds_new.pl deleted file mode 100644 index deae0da..0000000 --- a/thresholds/thresholds_new.pl +++ /dev/null @@ -1,61 +0,0 @@ -#!/usr/bin/env perl - -use strict; -use warnings; -use Data::Dumper; - -use lib "/home/hadaq/trbsoft/daqtools/dmon/code"; -use Dmon; - -use Getopt::Long; -use Log::Log4perl qw(get_logger); - -use HADES::TrbNet; - -use IPC::ShareLite qw( :lock ); - -use constant false => 0; -use constant true => 1; - -my $share = IPC::ShareLite->new( - -key => 3214, - -create => 'yes', - -destroy => 'yes' - ) or die $!; - -$share->store("dummy text"); -#print "store res: $r\n"; - -my $hitregister = 0xc001; - -my @valid_interval = (0x7800, 0x8800); -my $interval_step = ($valid_interval[1] - $valid_interval[0])/4; -my $start_value = int ( ($valid_interval[1] + $valid_interval[0])/2 ); - -my $sleep_time = 1.0; -my $accepted_dark_rate = 150; -my $number_of_iterations = 40; # at least 15 are recommended - -my $endpoint = 0x0303; -my $mode = "padiwa"; -my $help = ""; -my $offset = 0; -my $opt_skip = 99; -my $polarity = 1; -my @channels = (); -my $channel32 = undef; -my $opt_finetune = false; - -our $chain = 0; - -my $result = GetOptions ( - "h|help" => \$help, - "c|chain=i" => \$chain, - "e|endpoint=s" => \$endpoint, - "m|mode=s" => \$mode, - "p|polarity=i" => \$polarity, - "o|offset=s" => \$offset, - "32|32channel" => \$channel32, - "s|skip=i" => \$opt_skip, - "f|finetune" => \$opt_finetune, - ); diff --git a/users/cern_cbmrich/dmon_config.pl b/users/cern_cbmrich/dmon_config.pl index a19379f..81c8b36 100755 --- a/users/cern_cbmrich/dmon_config.pl +++ b/users/cern_cbmrich/dmon_config.pl @@ -35,7 +35,7 @@ PadiwaTrbAdresses => [0x0010,0x0011,0x0012,0x0013, 0x00e0,0x00e1,0x00e2,0x00e3, 0x00f0,0x00f1,0x00f2,0x00f3, 0x0100,0x0101,0x0102,0x0103, - 0x0111], + 0x0111,0x0113], HubTrbAdresses => [0x7005,0x7000,0x7001,0x7002,0x7003, 0x0015, diff --git a/users/cern_cbmrich/makethresholds.sh b/users/cern_cbmrich/makethresholds.sh new file mode 100755 index 0000000..c30607b --- /dev/null +++ b/users/cern_cbmrich/makethresholds.sh @@ -0,0 +1,29 @@ +#!/bin/bash +rm padiwa_threshold_results.log +./write_thresholds.pl thresh/dummythresholds.thr -o 0 + + +# ./run_thresh_on_system.pl \ +# --endpoints=0x0013,0x0021,0x0033,0x0041,0x0053,0x0061,0x0073,0x0081,0x0093,0x00a1,0x00b3,0x00c1,0x00d3,0x00e1,0x00f3,0x0101 \ +# --32channel --chains=0 --offset=0 --polarity 1 +# ./write_thresholds.pl thresh/dummythresholds.thr -o 0 +# ./run_thresh_on_system.pl \ +# --endpoints=0x0012,0x0020,0x0032,0x0040,0x0052,0x0060,0x0072,0x0080,0x0092,0x00a0,0x00b2,0x00c0,0x00d2,0x00e0,0x00f2,0x0100 \ +# --32channel --chains=0 --offset=0 --polarity 1 +# ./write_thresholds.pl thresh/dummythresholds.thr -o 0 +# ./run_thresh_on_system.pl \ +# --endpoints=0x0011,0x0023,0x0031,0x0043,0x0051,0x0063,0x0071,0x0083,0x0091,0x00a3,0x00b1,0x00c3,0x00d1,0x00e3,0x00f1,0x0103 \ +# --32channel --chains=0 --offset=0 --polarity 1 +# ./write_thresholds.pl thresh/dummythresholds.thr -o 0 +# ./run_thresh_on_system.pl \ +# --endpoints=0x0010,0x0022,0x0030,0x0042,0x0050,0x0062,0x0070,0x0082,0x0090,0x00a2,0x00b0,0x00c2,0x00d0,0x00e2,0x00f0,0x0102 \ +# --32channel --chains=0 --offset=0 --polarity 1 + +# +# ./run_thresh_on_system.pl --endpoints=0x0010-0x0013,0x0020-0x0023,0x0030-0x0033,0x0040-0x0043,0x0050-0x0053,0x0060-0x0063,0x0070-0x0073,0x0080-0x0083,0x0090-0x0093,0x00a0-0x00a3,0x00b0-0x00b3,0x00c0-0x00c3,0x00d0-0x00d3,0x00e0-0x00e3,0x00f0-0x00f3,0x0100-0x0103\ +# --32channel --chains=0 --offset=0 --polarity 0 --tool ./thresholds_automatic.pl + +./run_thresh_on_system.pl --endpoints=0x0010-0x0013,0x0020-0x0023,0x0030-0x0033,0x0040-0x0043,0x0050-0x0053,0x0060-0x0063,0x0070-0x0073,0x0080-0x0083,0x0090-0x0093,0x00a0-0x00a3,0x00b0-0x00b3,0x00c0-0x00c3,0x00d0-0x00d3,0x00e0-0x00e3,0x00f0-0x00f3,0x0100-0x0103\ + --32channel --chains=0 --offset=0 --polarity 1 --tool ./thresholds_new.pl + +./write_thresholds.pl padiwa_threshold_results.log -o 0 \ No newline at end of file diff --git a/users/cern_cbmrich/register_config_tdc.db b/users/cern_cbmrich/register_config_tdc.db index 08bae44..833ad5d 100644 --- a/users/cern_cbmrich/register_config_tdc.db +++ b/users/cern_cbmrich/register_config_tdc.db @@ -90,6 +90,6 @@ 0x0103 0 0xffffffff 0x00000000 0x0110 0 0x0000ffff 0x00000000 #gpin - 0x0111 0 0xffffffff 0x00000000 #padiwa amps - #0x0112 0 0x00000000 0x00000000 #billboard - #0x0113 0 0x00000000 0x00000000 + 0x0111 0 0x0000f0ff 0x00000000 #padiwa amps small +#0x0112 0 0x00000000 0x00000000 #billboard + 0x0113 0 0x00000f00 0x00000000 #padiwa amps large diff --git a/users/cern_cbmrich/thresh/201411160018.thr b/users/cern_cbmrich/thresh/201411160018.thr new file mode 100644 index 0000000..0e6458d --- /dev/null +++ b/users/cern_cbmrich/thresh/201411160018.thr @@ -0,0 +1,1024 @@ +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 0 threshold: 0x7fa4, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 1 threshold: 0x8040, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 2 threshold: 0x7ff8, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 3 threshold: 0x7d68, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 4 threshold: 0x813c, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 0 threshold: 0x7d68, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 1 threshold: 0x7ddc, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 5 threshold: 0x7f58, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 6 threshold: 0x7a92, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 2 threshold: 0x7dc0, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 7 threshold: 0x7e38, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 3 threshold: 0x7f0c, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 4 threshold: 0x7ca4, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 8 threshold: 0x7de4, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 9 threshold: 0x7b20, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 5 threshold: 0x7cd0, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 10 threshold: 0x7ea8, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 6 threshold: 0x7778, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 11 threshold: 0x7884, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 7 threshold: 0x7bf8, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 12 threshold: 0x7bbc, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 8 threshold: 0x7b38, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 9 threshold: 0x7894, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 13 threshold: 0x7b98, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 10 threshold: 0x7b28, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 14 threshold: 0x7fb0, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 11 threshold: 0x7544, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0010, chain: 00, channel: 15 threshold: 0x7c5c, uid: b60000050d610428 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 12 threshold: 0x79ec, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 13 threshold: 0x7814, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 14 threshold: 0x7e58, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0032, chain: 00, channel: 15 threshold: 0x7c58, uid: 570000050d2cfd28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 0 threshold: 0x7e00, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 1 threshold: 0x7a6c, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 2 threshold: 0x7d14, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 3 threshold: 0x80e0, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 4 threshold: 0x7ad8, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 5 threshold: 0x7e40, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 6 threshold: 0x7504, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 7 threshold: 0x7b38, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 8 threshold: 0x7ed0, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 9 threshold: 0x7518, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 10 threshold: 0x7818, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 11 threshold: 0x7150, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 12 threshold: 0x7838, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 13 threshold: 0x7577, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 14 threshold: 0x7ffc, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0082, chain: 00, channel: 15 threshold: 0x7874, uid: c00000050df9bf28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 0 threshold: 0x13400, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 0 threshold: 0x8038, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 1 threshold: 0x7718, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 1 threshold: 0x80b4, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 2 threshold: 0x7caf, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 2 threshold: 0x7e9c, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 3 threshold: 0x7dec, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 3 threshold: 0x7e94, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 4 threshold: 0x7bcd, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 4 threshold: 0x7e30, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 5 threshold: 0x7c18, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 5 threshold: 0x7f44, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 6 threshold: 0x7a6d, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 6 threshold: 0x7b50, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 7 threshold: 0x7f5b, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 7 threshold: 0x8060, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 8 threshold: 0x7e94, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 8 threshold: 0x8090, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 9 threshold: 0x7d38, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 9 threshold: 0x7d4c, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 10 threshold: 0x7f58, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 10 threshold: 0x7b99, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 11 threshold: 0x7bf8, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 11 threshold: 0x7991, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 12 threshold: 0x811c, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 12 threshold: 0x7d2b, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 13 threshold: 0x7d9c, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 13 threshold: 0x7bab, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 14 threshold: 0x7f34, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 14 threshold: 0x80a4, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0073, chain: 00, channel: 15 threshold: 0x7f34, uid: 940000050d89c728 +2014/11/16 00:17:15 endpoint: 0x00a3, chain: 00, channel: 15 threshold: 0x807c, uid: 040000050d475f28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 0 threshold: 0x7e44, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 1 threshold: 0x7f0c, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 2 threshold: 0x7e50, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 3 threshold: 0x7c80, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 4 threshold: 0x7f5c, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 5 threshold: 0x7f5c, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 6 threshold: 0x79fe, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 7 threshold: 0x7ea4, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 8 threshold: 0x7e38, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 9 threshold: 0x7c04, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 10 threshold: 0x7c63, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 11 threshold: 0x7919, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 12 threshold: 0x7f8c, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 13 threshold: 0x7ce0, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 14 threshold: 0x7f9c, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0023, chain: 00, channel: 15 threshold: 0x8000, uid: 820000050d8f3c28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 0 threshold: 0x8280, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 1 threshold: 0x81e8, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 2 threshold: 0x801c, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 3 threshold: 0x82e4, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 4 threshold: 0x8465, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 5 threshold: 0x8258, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 6 threshold: 0x7e30, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 7 threshold: 0x8228, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 8 threshold: 0x809a, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 9 threshold: 0x8054, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 10 threshold: 0x7e78, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 11 threshold: 0x7c24, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 12 threshold: 0x7eb8, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 13 threshold: 0x7e80, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 14 threshold: 0x813c, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0011, chain: 00, channel: 15 threshold: 0x802c, uid: a00000050d302f28 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 0 threshold: 0x802c, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 1 threshold: 0x80b4, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 2 threshold: 0x7fe8, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 3 threshold: 0x7eb0, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 4 threshold: 0x83a1, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 5 threshold: 0x803c, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 6 threshold: 0x7a84, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 7 threshold: 0x81c8, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 8 threshold: 0x7ec4, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 9 threshold: 0x7a9c, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 10 threshold: 0x7af8, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 11 threshold: 0x79e0, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 12 threshold: 0x7c14, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 13 threshold: 0x7a78, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 14 threshold: 0x7e88, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0081, chain: 00, channel: 15 threshold: 0x7d6c, uid: ae000004a47e6728 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 0 threshold: 0x80f0, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 1 threshold: 0x8060, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 2 threshold: 0x7e68, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 3 threshold: 0x81ba, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 4 threshold: 0x8140, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 5 threshold: 0x8158, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 6 threshold: 0x7d48, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 7 threshold: 0x7fc4, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 8 threshold: 0x7f24, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 9 threshold: 0x7d3c, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 10 threshold: 0x7d60, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 11 threshold: 0x7b54, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 12 threshold: 0x7f08, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 13 threshold: 0x7c98, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 14 threshold: 0x80ad, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0050, chain: 00, channel: 15 threshold: 0x7d90, uid: 020000050df6dd28 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 0 threshold: 0x8368, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 0 threshold: 0x7e7c, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 1 threshold: 0x8439, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 1 threshold: 0x7ea3, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 2 threshold: 0x83c0, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 2 threshold: 0x7f5c, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 3 threshold: 0x8354, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 3 threshold: 0x7c90, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 4 threshold: 0x8438, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 5 threshold: 0x84e2, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 6 threshold: 0x8148, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 7 threshold: 0x82f4, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 8 threshold: 0x84f8, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 9 threshold: 0x81e8, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 10 threshold: 0x8480, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 11 threshold: 0x8128, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 12 threshold: 0x84c0, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 13 threshold: 0x8110, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 14 threshold: 0x8400, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0053, chain: 00, channel: 15 threshold: 0x8420, uid: b5000004e3b78028 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 4 threshold: 0x855c, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 5 threshold: 0x80ca, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 6 threshold: 0x7618, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 7 threshold: 0x7cf4, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 8 threshold: 0x7e8c, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 9 threshold: 0x7cf0, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 10 threshold: 0x7a38, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 11 threshold: 0x7747, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 12 threshold: 0x7d90, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 13 threshold: 0x7800, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 14 threshold: 0x8068, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0083, chain: 00, channel: 15 threshold: 0x7cac, uid: 0b0000050e001228 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 0 threshold: 0x8044, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 1 threshold: 0x7f28, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 2 threshold: 0x80e0, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 3 threshold: 0x8298, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 4 threshold: 0x80c8, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 5 threshold: 0x7eb8, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 6 threshold: 0x7c50, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 7 threshold: 0x81f4, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 8 threshold: 0x7fcc, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 9 threshold: 0x7c24, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 0 threshold: 0x80cd, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 1 threshold: 0x7eec, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 2 threshold: 0x7d74, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 3 threshold: 0x7dac, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 4 threshold: 0x81f2, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 10 threshold: 0x7cfc, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 5 threshold: 0x8087, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 11 threshold: 0x7b60, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 6 threshold: 0x7cac, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 12 threshold: 0x7f08, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 7 threshold: 0x8187, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 13 threshold: 0x7c18, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 8 threshold: 0x8027, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 14 threshold: 0x80f4, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 9 threshold: 0x7d8c, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0060, chain: 00, channel: 15 threshold: 0x7e30, uid: 55000004a47dd128 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 10 threshold: 0x7f14, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 11 threshold: 0x7ba8, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 12 threshold: 0x7d80, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 13 threshold: 0x7b24, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 14 threshold: 0x7e64, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0061, chain: 00, channel: 15 threshold: 0x7e98, uid: 180000050d316f28 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 0 threshold: 0x80c8, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 1 threshold: 0x8134, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 2 threshold: 0x80e0, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 3 threshold: 0x7f58, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 4 threshold: 0x8134, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 5 threshold: 0x83a5, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 6 threshold: 0x7e90, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 7 threshold: 0x8248, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 8 threshold: 0x81b8, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 9 threshold: 0x7e28, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 10 threshold: 0x80b8, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 11 threshold: 0x7b1c, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 12 threshold: 0x7f68, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 13 threshold: 0x7d24, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 14 threshold: 0x7f54, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0051, chain: 00, channel: 15 threshold: 0x80ad, uid: 1e0000050d2c6628 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 0 threshold: 0x80e8, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 1 threshold: 0x7e2c, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 2 threshold: 0x7e24, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 3 threshold: 0x8126, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 4 threshold: 0x8170, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 5 threshold: 0x81f0, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 6 threshold: 0x7c9c, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 7 threshold: 0x80f4, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 8 threshold: 0x8038, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 9 threshold: 0x7da4, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 10 threshold: 0x7e4c, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 11 threshold: 0x7adc, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 12 threshold: 0x8080, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 13 threshold: 0x7ec0, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 14 threshold: 0x8270, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0063, chain: 00, channel: 15 threshold: 0x8090, uid: 600000050d461b28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 0 threshold: 0x823c, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 1 threshold: 0x8143, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 2 threshold: 0x8100, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 3 threshold: 0x829b, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 4 threshold: 0x8296, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 5 threshold: 0x8260, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 6 threshold: 0x8134, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 7 threshold: 0x8212, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 8 threshold: 0x812e, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 9 threshold: 0x7fc0, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 10 threshold: 0x822b, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 11 threshold: 0x7fbc, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 12 threshold: 0x813c, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 13 threshold: 0x8154, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 0 threshold: 0x7eea, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 14 threshold: 0x8234, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 1 threshold: 0x7b50, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 2 threshold: 0x7d04, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x0041, chain: 00, channel: 15 threshold: 0x80bc, uid: ee0000050d43bb28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 3 threshold: 0x7e08, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 4 threshold: 0x8194, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 5 threshold: 0x7ea8, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 6 threshold: 0x78d0, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 7 threshold: 0x7e7a, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 8 threshold: 0x7eec, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 9 threshold: 0x7aa0, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 10 threshold: 0x7a04, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 11 threshold: 0x74b8, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 12 threshold: 0x7b64, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 13 threshold: 0x7968, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 14 threshold: 0x81a4, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x00a1, chain: 00, channel: 15 threshold: 0x7bb0, uid: 740000050d351a28 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 0 threshold: 0x8070, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 1 threshold: 0x7d98, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 2 threshold: 0x7b94, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 3 threshold: 0x7ddc, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 4 threshold: 0x7d28, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 5 threshold: 0x7c10, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 6 threshold: 0x7258, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 7 threshold: 0x7d90, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 8 threshold: 0x7a8c, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 9 threshold: 0x77bc, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 10 threshold: 0x7828, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 11 threshold: 0x73a8, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 12 threshold: 0x774c, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 13 threshold: 0x76b8, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 14 threshold: 0x7f10, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0080, chain: 00, channel: 15 threshold: 0x7c0c, uid: 7e0000050d47e328 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 0 threshold: 0x80b8, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 1 threshold: 0x79f0, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 2 threshold: 0x7d7c, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 3 threshold: 0x7c6c, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 4 threshold: 0x7f3c, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 5 threshold: 0x7c9c, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 6 threshold: 0x7754, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 7 threshold: 0x7eac, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 8 threshold: 0x7c54, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 9 threshold: 0x77d8, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 10 threshold: 0x79b4, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 11 threshold: 0x7641, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 12 threshold: 0x7a5f, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 13 threshold: 0x75ff, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 14 threshold: 0x7c68, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0022, chain: 00, channel: 15 threshold: 0x7a10, uid: 380000050d398e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 0 threshold: 0x807c, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 1 threshold: 0x7d0c, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 2 threshold: 0x7a24, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 3 threshold: 0x8068, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 4 threshold: 0x7fbc, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 5 threshold: 0x7f40, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 6 threshold: 0x78f4, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 7 threshold: 0x7f18, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 8 threshold: 0x7f30, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 9 threshold: 0x7a28, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 10 threshold: 0x7bf8, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 11 threshold: 0x767c, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 12 threshold: 0x7bd0, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 13 threshold: 0x7994, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 14 threshold: 0x8018, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0090, chain: 00, channel: 15 threshold: 0x7d60, uid: 6f0000050de85e28 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 0 threshold: 0x8080, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 1 threshold: 0x7d64, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 2 threshold: 0x7e70, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 3 threshold: 0x7f60, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 4 threshold: 0x7e0c, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 5 threshold: 0x8103, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 6 threshold: 0x7ce0, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 7 threshold: 0x80bc, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 8 threshold: 0x7ff4, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 9 threshold: 0x7ec8, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 10 threshold: 0x7e50, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 11 threshold: 0x7b98, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 12 threshold: 0x7f7c, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 13 threshold: 0x7cb4, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 14 threshold: 0x8040, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0021, chain: 00, channel: 15 threshold: 0x7fa8, uid: 330000050dfa4528 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 0 threshold: 0x8060, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 1 threshold: 0x815c, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 2 threshold: 0x800c, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 3 threshold: 0x81d0, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 4 threshold: 0x8632, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 5 threshold: 0x820c, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 6 threshold: 0x7f20, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 7 threshold: 0x81f8, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 8 threshold: 0x83c0, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 9 threshold: 0x7fec, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 10 threshold: 0x8080, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 11 threshold: 0x7de8, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 12 threshold: 0x81a4, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 13 threshold: 0x803c, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 14 threshold: 0x83d4, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0042, chain: 00, channel: 15 threshold: 0x811c, uid: 970000050dbe9c28 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 0 threshold: 0x7e48, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 1 threshold: 0x7c78, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 2 threshold: 0x79e4, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 3 threshold: 0x80f8, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 4 threshold: 0x7f24, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 5 threshold: 0x7d3c, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 6 threshold: 0x773c, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 7 threshold: 0x7c9c, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 8 threshold: 0x7c1c, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 9 threshold: 0x7998, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 10 threshold: 0x7b00, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 11 threshold: 0x7328, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 12 threshold: 0x7c80, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 13 threshold: 0x76a0, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 14 threshold: 0x7fbc, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0072, chain: 00, channel: 15 threshold: 0x7a58, uid: 3b0000050dfd4628 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 0 threshold: 0x7c9c, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 1 threshold: 0x7bb0, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 2 threshold: 0x79ac, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 3 threshold: 0x7a7c, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 4 threshold: 0x80a0, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 5 threshold: 0x7cdc, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 6 threshold: 0x78e0, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 7 threshold: 0x7bbc, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 8 threshold: 0x7e1c, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 9 threshold: 0x7b14, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 10 threshold: 0x7b00, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 11 threshold: 0x75d4, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 12 threshold: 0x7a78, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 13 threshold: 0x793c, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 14 threshold: 0x7f45, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x0092, chain: 00, channel: 15 threshold: 0x7c2c, uid: ae0000050e139e28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 0 threshold: 0x7e74, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 1 threshold: 0x7e04, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 2 threshold: 0x7c64, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 3 threshold: 0x810c, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 4 threshold: 0x7f24, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 5 threshold: 0x7e28, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 6 threshold: 0x7af0, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 7 threshold: 0x80d0, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 8 threshold: 0x7fd0, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 9 threshold: 0x7c1c, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 10 threshold: 0x7ca8, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 11 threshold: 0x7a20, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 12 threshold: 0x7b68, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 13 threshold: 0x7b5c, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 14 threshold: 0x7df4, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x00b1, chain: 00, channel: 15 threshold: 0x7d68, uid: e30000050d4b9c28 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 0 threshold: 0x7e2c, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 0 threshold: 0x7e0c, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 1 threshold: 0x7dd8, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 1 threshold: 0x7cac, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 2 threshold: 0x7cc4, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 2 threshold: 0x77dc, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 3 threshold: 0x7e1c, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 3 threshold: 0x7efc, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 4 threshold: 0x7d74, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 4 threshold: 0x7f10, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 5 threshold: 0x7f28, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 5 threshold: 0x7efc, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 6 threshold: 0x7740, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 6 threshold: 0x7804, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 7 threshold: 0x7f40, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 7 threshold: 0x7cd4, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 8 threshold: 0x7afc, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 8 threshold: 0x7d74, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 9 threshold: 0x78d8, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 9 threshold: 0x76c0, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 10 threshold: 0x7954, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 10 threshold: 0x7aa8, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 11 threshold: 0x7708, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 11 threshold: 0x7594, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 12 threshold: 0x7af0, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 12 threshold: 0x7a10, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 13 threshold: 0x7a38, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 13 threshold: 0x79cc, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 14 threshold: 0x7fdc, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 14 threshold: 0x7f18, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0091, chain: 00, channel: 15 threshold: 0x7e34, uid: 550000050e0f2628 +2014/11/16 00:17:15 endpoint: 0x00b2, chain: 00, channel: 15 threshold: 0x7af8, uid: 6b0000050d4e0928 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 0 threshold: 0x7c24, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 1 threshold: 0x7d22, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 2 threshold: 0x791c, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 3 threshold: 0x7fd8, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 4 threshold: 0x7a2c, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 5 threshold: 0x7fa8, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 6 threshold: 0x76a0, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 7 threshold: 0x7ce8, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 8 threshold: 0x7c6d, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 9 threshold: 0x75ec, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 10 threshold: 0x7a6c, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 11 threshold: 0x74c0, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 12 threshold: 0x7976, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 13 threshold: 0x77cc, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 14 threshold: 0x7fab, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x0103, chain: 00, channel: 15 threshold: 0x7bd0, uid: 48000004e3c1ea28 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 0 threshold: 0x7ed8, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 1 threshold: 0x8044, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 2 threshold: 0x7a60, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 3 threshold: 0x8074, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 4 threshold: 0x7d4c, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 5 threshold: 0x823c, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 6 threshold: 0x76e4, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 7 threshold: 0x7f20, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 8 threshold: 0x7e48, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 9 threshold: 0x79a0, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 10 threshold: 0x7ed8, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 11 threshold: 0x7674, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 12 threshold: 0x7d9c, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 13 threshold: 0x7afc, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 14 threshold: 0x82c8, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00a0, chain: 00, channel: 15 threshold: 0x7cc8, uid: 590000050d77f828 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 0 threshold: 0x7d44, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 0 threshold: 0x81e0, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 1 threshold: 0x8068, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 2 threshold: 0x7f80, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 1 threshold: 0x7e10, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 3 threshold: 0x8030, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 4 threshold: 0x81d8, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 5 threshold: 0x804c, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 2 threshold: 0x7c80, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 6 threshold: 0x7a64, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 7 threshold: 0x7fac, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 3 threshold: 0x7ee0, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 8 threshold: 0x7e28, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 0 threshold: 0x7e04, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 9 threshold: 0x7bb8, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 1 threshold: 0x79f0, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 4 threshold: 0x7ddc, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 10 threshold: 0x7ca4, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 2 threshold: 0x77e8, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 11 threshold: 0x79fc, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 3 threshold: 0x7dbc, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 5 threshold: 0x7f88, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 12 threshold: 0x7cb8, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 4 threshold: 0x7928, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 5 threshold: 0x7874, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 13 threshold: 0x7b78, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 6 threshold: 0x7894, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 6 threshold: 0x71a8, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 14 threshold: 0x80f4, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 7 threshold: 0x7eca, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 7 threshold: 0x7a64, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x0070, chain: 00, channel: 15 threshold: 0x7ed4, uid: 420000050df1c028 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 8 threshold: 0x7b3c, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 8 threshold: 0x7f64, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 9 threshold: 0x75bc, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 10 threshold: 0x7804, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 9 threshold: 0x77f8, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 11 threshold: 0x7359, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 12 threshold: 0x7804, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 10 threshold: 0x7c74, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 13 threshold: 0x75ed, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 14 threshold: 0x7bf4, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 11 threshold: 0x790c, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x00f2, chain: 00, channel: 15 threshold: 0x7a5c, uid: 450000050dee7e28 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 12 threshold: 0x7bdc, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 13 threshold: 0x7aa8, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 14 threshold: 0x7e34, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x00c0, chain: 00, channel: 15 threshold: 0x7d98, uid: 390000050e087828 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 0 threshold: 0x7dac, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 1 threshold: 0x7bc4, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 2 threshold: 0x7bf0, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 3 threshold: 0x8098, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 4 threshold: 0x7e8c, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 0 threshold: 0x81d0, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 5 threshold: 0x7dc8, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 6 threshold: 0x7968, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 7 threshold: 0x7bb0, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 8 threshold: 0x7f2c, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 1 threshold: 0x7d14, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 9 threshold: 0x7a88, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 10 threshold: 0x7bf0, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 11 threshold: 0x7690, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 2 threshold: 0x7d98, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 12 threshold: 0x7c70, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 13 threshold: 0x7944, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 14 threshold: 0x7ea6, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x0062, chain: 00, channel: 15 threshold: 0x7c0c, uid: 250000050d428e28 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 3 threshold: 0x7c94, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 4 threshold: 0x79dc, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 5 threshold: 0x7d2c, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 6 threshold: 0x7454, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 7 threshold: 0x7f74, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 8 threshold: 0x7d9c, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 9 threshold: 0x77d8, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 10 threshold: 0x7acc, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 11 threshold: 0x743c, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 12 threshold: 0x7e5c, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 13 threshold: 0x7974, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 14 threshold: 0x7df8, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x00d1, chain: 00, channel: 15 threshold: 0x7ca4, uid: 710000050d391528 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 0 threshold: 0x7f90, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 1 threshold: 0x7da8, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 2 threshold: 0x7dc8, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 3 threshold: 0x7ef8, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 4 threshold: 0x7fd0, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 5 threshold: 0x8124, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 6 threshold: 0x7c28, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 7 threshold: 0x7f94, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 8 threshold: 0x7f18, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 9 threshold: 0x7c08, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 10 threshold: 0x7dd0, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 11 threshold: 0x78b0, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 12 threshold: 0x7e84, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 13 threshold: 0x7bac, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 14 threshold: 0x7f7c, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x0071, chain: 00, channel: 15 threshold: 0x7ee0, uid: af0000050de72f28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 0 threshold: 0x7eac, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 1 threshold: 0x7ce8, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 2 threshold: 0x7eb4, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 3 threshold: 0x7e20, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 4 threshold: 0x7db8, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 5 threshold: 0x7f9c, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 6 threshold: 0x7a48, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 7 threshold: 0x7e25, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 8 threshold: 0x7cc0, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 9 threshold: 0x77d4, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 10 threshold: 0x7c08, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 11 threshold: 0x7282, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 12 threshold: 0x7bb8, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 13 threshold: 0x7988, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 14 threshold: 0x7fc7, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00a2, chain: 00, channel: 15 threshold: 0x7ac0, uid: 9f0000050d38aa28 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 0 threshold: 0x7fea, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 1 threshold: 0x7f30, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 2 threshold: 0x7e7c, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 3 threshold: 0x7dfc, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 4 threshold: 0x81f0, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 5 threshold: 0x8124, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 6 threshold: 0x77e0, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 7 threshold: 0x7e8d, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 8 threshold: 0x7df8, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 9 threshold: 0x7ab8, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 10 threshold: 0x7ac0, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 11 threshold: 0x78f5, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 12 threshold: 0x7bc0, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 13 threshold: 0x785c, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 14 threshold: 0x808c, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x00e1, chain: 00, channel: 15 threshold: 0x7cd4, uid: 550000050d4aa528 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 0 threshold: 0x7ed4, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 0 threshold: 0x7cb0, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 1 threshold: 0x7f24, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 2 threshold: 0x7c6c, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 1 threshold: 0x79d0, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 3 threshold: 0x82e8, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 2 threshold: 0x7974, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 4 threshold: 0x81a0, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 3 threshold: 0x7e70, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 5 threshold: 0x802c, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 6 threshold: 0x7751, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 4 threshold: 0x7af4, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 7 threshold: 0x80c4, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 5 threshold: 0x7c5c, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 8 threshold: 0x80bc, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 6 threshold: 0x761f, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 9 threshold: 0x7c24, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 10 threshold: 0x7aec, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 7 threshold: 0x7bfc, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 11 threshold: 0x7820, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 8 threshold: 0x79c4, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 12 threshold: 0x7c68, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 9 threshold: 0x75d4, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 13 threshold: 0x79ac, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 14 threshold: 0x8004, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 10 threshold: 0x7854, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x0013, chain: 00, channel: 15 threshold: 0x7c69, uid: 040000050d3e1a28 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 11 threshold: 0x7420, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 12 threshold: 0x7990, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 13 threshold: 0x7710, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 14 threshold: 0x7df4, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x00e2, chain: 00, channel: 15 threshold: 0x7a18, uid: b80000050d52d428 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 0 threshold: 0x7e2c, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 0 threshold: 0x7fd4, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 1 threshold: 0x7eec, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 1 threshold: 0x8257, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 2 threshold: 0x7c20, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 2 threshold: 0x7df8, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 3 threshold: 0x8138, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 3 threshold: 0x7c5c, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 4 threshold: 0x7f38, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 4 threshold: 0x7e60, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 5 threshold: 0x7b37, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 5 threshold: 0x8020, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 6 threshold: 0x7924, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 6 threshold: 0x773c, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 7 threshold: 0x7ef3, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 7 threshold: 0x7e10, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 8 threshold: 0x7fa0, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 8 threshold: 0x7eb4, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 9 threshold: 0x7c20, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 9 threshold: 0x77e4, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 10 threshold: 0x7d84, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 10 threshold: 0x7d26, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 11 threshold: 0x758c, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 11 threshold: 0x7a9c, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 12 threshold: 0x7ca2, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 12 threshold: 0x7e62, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 13 threshold: 0x7960, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 13 threshold: 0x7bac, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 14 threshold: 0x8038, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 14 threshold: 0x7ef8, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x00e0, chain: 00, channel: 15 threshold: 0x7e86, uid: 290000050d4d6328 +2014/11/16 00:17:15 endpoint: 0x0101, chain: 00, channel: 15 threshold: 0x7de0, uid: 050000050dd12928 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 0 threshold: 0x813c, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 1 threshold: 0x7f06, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 2 threshold: 0x7df4, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 3 threshold: 0x8064, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 4 threshold: 0x8110, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 5 threshold: 0x80c2, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 6 threshold: 0x77ec, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 7 threshold: 0x7f0c, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 8 threshold: 0x8038, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 9 threshold: 0x7ca8, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 10 threshold: 0x7e74, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 11 threshold: 0x796c, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 12 threshold: 0x7c54, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 13 threshold: 0x7b24, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 14 threshold: 0x7fa4, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00b0, chain: 00, channel: 15 threshold: 0x7c6c, uid: 310000050d845c28 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 0 threshold: 0x8030, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 0 threshold: 0x7e53, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 1 threshold: 0x7e40, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 1 threshold: 0x7b68, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 2 threshold: 0x7a84, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 2 threshold: 0x7958, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 3 threshold: 0x7e1c, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 3 threshold: 0x7fe4, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 4 threshold: 0x82e8, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 4 threshold: 0x7ea4, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 5 threshold: 0x8028, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 5 threshold: 0x7d8c, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 6 threshold: 0x7590, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 6 threshold: 0x77e4, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 7 threshold: 0x7b8c, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 7 threshold: 0x7edc, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 8 threshold: 0x8050, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 8 threshold: 0x7deb, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 9 threshold: 0x7b08, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 9 threshold: 0x7894, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 10 threshold: 0x7e75, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 10 threshold: 0x7b58, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 11 threshold: 0x74fd, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 11 threshold: 0x73a8, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 12 threshold: 0x7c10, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 12 threshold: 0x7df0, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 13 threshold: 0x7b50, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 13 threshold: 0x7884, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 14 threshold: 0x8024, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 14 threshold: 0x7fa7, uid: c80000050d47c328 +2014/11/16 00:17:15 endpoint: 0x00d0, chain: 00, channel: 15 threshold: 0x7bc8, uid: 8b0000050d30dc28 +2014/11/16 00:17:15 endpoint: 0x00e3, chain: 00, channel: 15 threshold: 0x7ffb, uid: c80000050d47c328 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 0 threshold: 0x81e4, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 1 threshold: 0x80b8, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 2 threshold: 0x8146, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 3 threshold: 0x82c4, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 4 threshold: 0x80c0, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 5 threshold: 0x82b8, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 0 threshold: 0x7e18, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 6 threshold: 0x803c, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 1 threshold: 0x7ca8, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 7 threshold: 0x82cc, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 0 threshold: 0x7fa5, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 2 threshold: 0x7b6c, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 8 threshold: 0x8328, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 1 threshold: 0x7cd0, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 3 threshold: 0x7e0c, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 2 threshold: 0x7d50, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 4 threshold: 0x7c70, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 3 threshold: 0x7ab8, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 5 threshold: 0x7f70, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 4 threshold: 0x7c74, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 6 threshold: 0x7704, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 5 threshold: 0x7e30, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 7 threshold: 0x7ec0, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 8 threshold: 0x7ba8, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 6 threshold: 0x7410, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 9 threshold: 0x7ae4, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 7 threshold: 0x7b13, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 8 threshold: 0x7ab8, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 10 threshold: 0x78e8, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 9 threshold: 0x79ec, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 9 threshold: 0x81c0, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 11 threshold: 0x7878, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 10 threshold: 0x77b0, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 10 threshold: 0x8110, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 12 threshold: 0x7b30, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 11 threshold: 0x7352, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 11 threshold: 0x819c, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 13 threshold: 0x7940, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 12 threshold: 0x7bc8, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 12 threshold: 0x8224, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 14 threshold: 0x7e4c, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 13 threshold: 0x77cc, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 13 threshold: 0x8148, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 14 threshold: 0x7db5, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x00c3, chain: 00, channel: 15 threshold: 0x7c58, uid: a20000050e0cfa28 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 14 threshold: 0x8290, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x00d3, chain: 00, channel: 15 threshold: 0x7a88, uid: f60000050d52ff28 +2014/11/16 00:17:16 endpoint: 0x0043, chain: 00, channel: 15 threshold: 0x82a4, uid: 07000004e3c37628 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 0 threshold: 0x81fc, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 1 threshold: 0x8110, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 2 threshold: 0x7ff4, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 0 threshold: 0x80d0, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 3 threshold: 0x7f74, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 1 threshold: 0x7f74, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 2 threshold: 0x7c20, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 4 threshold: 0x80b8, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 3 threshold: 0x8174, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 4 threshold: 0x7bec, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 5 threshold: 0x81a8, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 5 threshold: 0x7e88, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 0 threshold: 0x7f28, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 6 threshold: 0x790c, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 1 threshold: 0x7ff0, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 6 threshold: 0x7b84, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 7 threshold: 0x7f98, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 2 threshold: 0x7ee4, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 8 threshold: 0x7d10, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 3 threshold: 0x7d00, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 7 threshold: 0x80a2, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 9 threshold: 0x7910, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 4 threshold: 0x7fb0, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 10 threshold: 0x7994, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 8 threshold: 0x81fc, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 5 threshold: 0x8138, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 11 threshold: 0x7585, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 6 threshold: 0x7764, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 9 threshold: 0x7d88, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 12 threshold: 0x7cc4, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 7 threshold: 0x818c, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 13 threshold: 0x77ec, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 8 threshold: 0x7d68, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 10 threshold: 0x7df0, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 14 threshold: 0x80a4, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 9 threshold: 0x7a60, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x00c2, chain: 00, channel: 15 threshold: 0x7c40, uid: 740000050d4a0928 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 11 threshold: 0x7a9c, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 10 threshold: 0x7d88, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 11 threshold: 0x76a0, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 12 threshold: 0x7f28, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 12 threshold: 0x7ce4, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 13 threshold: 0x78a0, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 13 threshold: 0x7c68, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 14 threshold: 0x7ff8, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x0102, chain: 00, channel: 15 threshold: 0x7d44, uid: 89000004e3aa6728 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 14 threshold: 0x80bc, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x0033, chain: 00, channel: 15 threshold: 0x7ff0, uid: 16000004a4020628 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 0 threshold: 0x7f28, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 1 threshold: 0x7da0, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 2 threshold: 0x7f7c, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 3 threshold: 0x7e88, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 4 threshold: 0x8029, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 5 threshold: 0x7f14, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 6 threshold: 0x7ac0, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 7 threshold: 0x7f67, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 8 threshold: 0x803c, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 9 threshold: 0x0000, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 10 threshold: 0x824c, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 11 threshold: 0x7a28, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 12 threshold: 0x7f20, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 13 threshold: 0x7d88, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 14 threshold: 0x7ff4, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0020, chain: 00, channel: 15 threshold: 0x7cf4, uid: c30000050db1f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 0 threshold: 0x8089, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 1 threshold: 0x7fc7, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 2 threshold: 0x7ed8, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 3 threshold: 0x81b0, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 4 threshold: 0x7fd6, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 5 threshold: 0x8048, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 6 threshold: 0x7d74, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 7 threshold: 0x8138, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 8 threshold: 0x806a, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 9 threshold: 0x7dfc, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 10 threshold: 0x7f14, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 11 threshold: 0x7df4, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 12 threshold: 0x804c, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 13 threshold: 0x7dfb, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 14 threshold: 0x7fb7, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x0093, chain: 00, channel: 15 threshold: 0x7e68, uid: 9d0000050d61f728 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 0 threshold: 0x7f98, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 1 threshold: 0x7ee6, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 2 threshold: 0x7cc4, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 3 threshold: 0x7fad, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 4 threshold: 0x8304, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 5 threshold: 0x8008, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 6 threshold: 0x7a28, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 7 threshold: 0x7f2e, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 8 threshold: 0x7e84, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 9 threshold: 0x7938, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 10 threshold: 0x7aac, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 11 threshold: 0x7888, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 12 threshold: 0x7bc8, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 13 threshold: 0x791c, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 14 threshold: 0x8220, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00c1, chain: 00, channel: 15 threshold: 0x7d8c, uid: 760000050e12a528 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 0 threshold: 0x7ebc, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 1 threshold: 0x7d44, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 2 threshold: 0x7b58, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 3 threshold: 0x8104, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 4 threshold: 0x7ec0, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 5 threshold: 0x7c80, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 6 threshold: 0x7768, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 7 threshold: 0x7c4c, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 8 threshold: 0x7bfc, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 9 threshold: 0x76d8, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 10 threshold: 0x7b74, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 11 threshold: 0x74bc, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 12 threshold: 0x7c9c, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 13 threshold: 0x7abc, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 14 threshold: 0x7edc, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x00f0, chain: 00, channel: 15 threshold: 0x7b28, uid: 490000050dbaef28 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 0 threshold: 0x8010, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 1 threshold: 0x7ea0, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 2 threshold: 0x7f14, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 3 threshold: 0x8234, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 4 threshold: 0x7d54, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 5 threshold: 0x80cc, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 6 threshold: 0x7c84, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 7 threshold: 0x8073, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 8 threshold: 0x7fa0, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 9 threshold: 0x7cb0, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 0 threshold: 0x7ea0, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 10 threshold: 0x7e60, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 1 threshold: 0x7dc4, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 11 threshold: 0x7b48, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 2 threshold: 0x7d40, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 12 threshold: 0x7cd4, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 3 threshold: 0x8004, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 13 threshold: 0x7af8, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 4 threshold: 0x7e4d, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 14 threshold: 0x8014, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 5 threshold: 0x7efe, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0052, chain: 00, channel: 15 threshold: 0x7f50, uid: 460000050db59428 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 6 threshold: 0x77f4, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 7 threshold: 0x7dc4, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 8 threshold: 0x7f24, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 9 threshold: 0x7980, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 10 threshold: 0x7c1c, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 11 threshold: 0x7760, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 12 threshold: 0x7c4c, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 13 threshold: 0x7b54, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 14 threshold: 0x8054, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x0100, chain: 00, channel: 15 threshold: 0x7bc8, uid: ca0000050e0a9b28 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 0 threshold: 0x7d00, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 0 threshold: 0x8098, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 1 threshold: 0x7cbc, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 1 threshold: 0x7d18, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 2 threshold: 0x7bd4, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 3 threshold: 0x828c, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 2 threshold: 0x7ac8, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 4 threshold: 0x803c, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 5 threshold: 0x7df0, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 0 threshold: 0x7f04, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 3 threshold: 0x7a54, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 6 threshold: 0x739c, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 1 threshold: 0x7f00, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 7 threshold: 0x7b84, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 2 threshold: 0x7e48, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 4 threshold: 0x7f34, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 8 threshold: 0x7e3c, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 3 threshold: 0x7c8c, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 9 threshold: 0x793c, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 5 threshold: 0x7ec8, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 4 threshold: 0x7f00, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 10 threshold: 0x7890, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 5 threshold: 0x7e78, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 6 threshold: 0x747f, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 11 threshold: 0x769c, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 6 threshold: 0x7a34, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 12 threshold: 0x79a8, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 7 threshold: 0x7f86, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 7 threshold: 0x7b18, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 13 threshold: 0x7994, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 8 threshold: 0x7f44, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 14 threshold: 0x810a, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 8 threshold: 0x7cec, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 9 threshold: 0x7aa8, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00b3, chain: 00, channel: 15 threshold: 0x7a20, uid: f80000050d4ea328 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 10 threshold: 0x7d64, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 9 threshold: 0x7828, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 11 threshold: 0x7ad0, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 12 threshold: 0x7bf0, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 10 threshold: 0x78a0, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 13 threshold: 0x7ce8, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 14 threshold: 0x7f40, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 11 threshold: 0x73a0, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x0030, chain: 00, channel: 15 threshold: 0x7e20, uid: 070000050dfc8428 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 12 threshold: 0x7ba4, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 13 threshold: 0x77bb, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 14 threshold: 0x7e08, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x00f3, chain: 00, channel: 15 threshold: 0x7b78, uid: 3b0000050d74bb28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 0 threshold: 0x7e5f, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 1 threshold: 0x7aec, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 2 threshold: 0x7b84, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 3 threshold: 0x7d47, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 4 threshold: 0x7fc4, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 5 threshold: 0x7ea2, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 6 threshold: 0x7ae4, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 7 threshold: 0x8014, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 8 threshold: 0x7ce0, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 9 threshold: 0x7c3c, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 10 threshold: 0x7ccc, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 11 threshold: 0x78a8, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 12 threshold: 0x7cc8, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 13 threshold: 0x7b04, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 14 threshold: 0x7fcc, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0031, chain: 00, channel: 15 threshold: 0x7b94, uid: 5e0000050e041f28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 0 threshold: 0x8000, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 1 threshold: 0x7e5c, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 2 threshold: 0x7b78, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 3 threshold: 0x7e70, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 4 threshold: 0x7a44, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 5 threshold: 0x7c68, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 0 threshold: 0x7b70, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 6 threshold: 0x78a0, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 7 threshold: 0x7f8b, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 1 threshold: 0x796c, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 8 threshold: 0x7e28, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 2 threshold: 0x755c, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 9 threshold: 0x7a00, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 10 threshold: 0x7e6c, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 3 threshold: 0x7c48, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 11 threshold: 0x764c, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 4 threshold: 0x7ccc, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 12 threshold: 0x7ce8, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 5 threshold: 0x79e0, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 13 threshold: 0x786c, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 6 threshold: 0x727b, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 14 threshold: 0x8024, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 7 threshold: 0x7944, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x0012, chain: 00, channel: 15 threshold: 0x7bb4, uid: a40000050d46cb28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 8 threshold: 0x7c80, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 9 threshold: 0x7868, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 10 threshold: 0x76f4, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 11 threshold: 0x7390, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 12 threshold: 0x7754, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 13 threshold: 0x75ac, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 14 threshold: 0x7e08, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x00d2, chain: 00, channel: 15 threshold: 0x7b30, uid: 2b0000050db07d28 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 0 threshold: 0x8474, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 1 threshold: 0x843c, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 2 threshold: 0x8460, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 3 threshold: 0x852c, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 4 threshold: 0x8563, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 5 threshold: 0x8584, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 6 threshold: 0x83b0, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 7 threshold: 0x85c9, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 8 threshold: 0x85b9, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 9 threshold: 0x8458, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 10 threshold: 0x8508, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 11 threshold: 0x83e8, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 12 threshold: 0x8560, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 13 threshold: 0x83ac, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 14 threshold: 0x85f1, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x0040, chain: 00, channel: 15 threshold: 0x850c, uid: 580000050d344028 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 0 threshold: 0x7e80, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 1 threshold: 0x7e9c, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 2 threshold: 0x7b8c, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 3 threshold: 0x80b8, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 4 threshold: 0x7ef4, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 5 threshold: 0x7e68, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 6 threshold: 0x76bc, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 7 threshold: 0x8231, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 8 threshold: 0x7e20, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 9 threshold: 0x7a28, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 10 threshold: 0x7b3c, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 11 threshold: 0x77d0, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 12 threshold: 0x7b40, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 13 threshold: 0x7a9c, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 14 threshold: 0x7db4, uid: 2d0000050d658628 +2014/11/16 00:17:16 endpoint: 0x00f1, chain: 00, channel: 15 threshold: 0x7cf0, uid: 2d0000050d658628 diff --git a/users/cern_cbmrich/thresh/billboard_info b/users/cern_cbmrich/thresh/billboard_info new file mode 100644 index 0000000..56cc36c --- /dev/null +++ b/users/cern_cbmrich/thresh/billboard_info @@ -0,0 +1 @@ +0xdeadcode \ No newline at end of file diff --git a/users/cern_cbmrich/thresh/current_thresholds.thr b/users/cern_cbmrich/thresh/current_thresholds.thr new file mode 120000 index 0000000..2170e38 --- /dev/null +++ b/users/cern_cbmrich/thresh/current_thresholds.thr @@ -0,0 +1 @@ +201411160018.thr \ No newline at end of file diff --git a/users/cern_cbmrich/thresh/thresholds_padiwa_amps.thr b/users/cern_cbmrich/thresh/thresholds_padiwa_amps.thr index de54d55..915feb6 100644 --- a/users/cern_cbmrich/thresh/thresholds_padiwa_amps.thr +++ b/users/cern_cbmrich/thresh/thresholds_padiwa_amps.thr @@ -2,8 +2,8 @@ 2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 01 threshold: 0xDA00, uid: 0 2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 02 threshold: 0x0744, uid: 0 2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 03 threshold: 0xDB10, uid: 0 -2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 04 threshold: 0x0600, uid: 0 -2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 05 threshold: 0xD880, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 04 threshold: 0xffff, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 05 threshold: 0x0000, uid: 0 2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 06 threshold: 0x0600, uid: 0 2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 07 threshold: 0xdf80, uid: 0 2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 08 threshold: 0xffff, uid: 0 @@ -13,4 +13,21 @@ 2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 12 threshold: 0xffff, uid: 0 2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 13 threshold: 0x0000, uid: 0 2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 14 threshold: 0xffff, uid: 0 -2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 15 threshold: 0x0000, uid: 0 \ No newline at end of file +2014/10/20 00:00:00 endpoint: 0x0111, chain: 00, channel: 15 threshold: 0x0000, uid: 0 + +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 00 threshold: 0xffff, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 01 threshold: 0x0000, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 02 threshold: 0xffff, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 03 threshold: 0x0000, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 04 threshold: 0x0942, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 05 threshold: 0xD511, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 06 threshold: 0xffff, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 07 threshold: 0x0000, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 08 threshold: 0xffff, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 09 threshold: 0x0000, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 10 threshold: 0xffff, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 11 threshold: 0x0000, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 12 threshold: 0xffff, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 13 threshold: 0x0000, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 14 threshold: 0xffff, uid: 0 +2014/10/20 00:00:00 endpoint: 0x0113, chain: 00, channel: 15 threshold: 0x0000, uid: 0 \ No newline at end of file diff --git a/users/cern_cbmrich/thresholds_new.pl b/users/cern_cbmrich/thresholds_new.pl new file mode 120000 index 0000000..14dac43 --- /dev/null +++ b/users/cern_cbmrich/thresholds_new.pl @@ -0,0 +1 @@ +../../thresholds/thresholds_automatic_jan.pl \ No newline at end of file