diff --git a/README.md b/README.md index ca5ed170..61480905 100644 --- a/README.md +++ b/README.md @@ -148,6 +148,9 @@ You can then generate some load to make sure that blocks with transactions are b $ polycli loadtest --verbosity 700 --chain-id 1337 --concurrency 1 --requests 1000 --rate-limit 5 --mode c --rpc-url http://127.0.0.1:8545 ``` +## Monitor Debug +`polycli monitor --rpc-url http://34.117.145.249:80 -v 700 &> log.txt` + # Contributing - If you add a new loadtest mode, don't forget to update the loadtest mode string by running the following command: `cd cmd/loadtest && stringer -type=loadTestMode`. You can install [stringer](https://pkg.go.dev/golang.org/x/tools/cmd/stringer) with `go install golang.org/x/tools/cmd/stringer@latest`. diff --git a/cmd/monitor/monitor.go b/cmd/monitor/monitor.go index 255fa011..3e674725 100644 --- a/cmd/monitor/monitor.go +++ b/cmd/monitor/monitor.go @@ -91,7 +91,7 @@ func monitor(ctx context.Context) error { ec := ethclient.NewClient(rpc) ms := new(monitorStatus) - ms.BlockCache, _ = lru.New(1000) + ms.BlockCache, _ = lru.New(100) ms.MaxBlockRetrieved = big.NewInt(0) ms.ChainID = big.NewInt(0) @@ -224,7 +224,7 @@ func appendOlderBlocks(ctx context.Context, ms *monitorStatus, rpc *ethrpc.Clien return nil } -const maxHistoricalPoints = 1000 // set a limit to the number of historical points +const maxHistoricalPoints = 100 // set a limit to the number of historical points func fetchBlocks(ctx context.Context, ec *ethclient.Client, ms *monitorStatus, rpc *ethrpc.Client, isUiRendered bool) (err error) { var cs *chainState @@ -588,13 +588,14 @@ func renderMonitorUI(ctx context.Context, ec *ethclient.Client, ms *monitorStatu if windowOffset+windowSize < len(allBlocks) { windowOffset += 1 } else { - err := appendOlderBlocks(ctx, ms, rpc) - if err != nil { - log.Warn().Err(err).Msg("Unable to append more history") - } - forceRedraw = true - redraw(ms, true) - break + // err := appendOlderBlocks(ctx, ms, rpc) + // windowOffset -= batchSize + // if err != nil { + // log.Warn().Err(err).Msg("Unable to append more history") + // } + // forceRedraw = true + // redraw(ms, true) + // break } } currIdx += 1 @@ -632,23 +633,56 @@ func renderMonitorUI(ctx context.Context, ec *ethclient.Client, ms *monitorStatu } setBlock = true case "", "": - if len(renderedBlocks) < windowSize { - windowOffset = 0 - blockTable.SelectedRow = len(renderedBlocks) - break - } - windowOffset += windowSize - // good to go to next page but not enough blocks to fill page - if windowOffset > len(allBlocks)-windowSize { - err := appendOlderBlocks(ctx, ms, rpc) + targetOffset := windowOffset + windowSize + + // calculate the range of block numbers we are trying to page down to + fromBlockNumber := calculateBlockNumberFromOffset(targetOffset, windowSize, ms) + toBlockNumber := calculateBlockNumberFromOffset(targetOffset+windowSize, windowSize, ms) + + // check the availability of the range in the cache + missingBlocks, _ := checkAndFetchMissingBlocks(ctx, ms, rpc, fromBlockNumber, toBlockNumber) + + if len(missingBlocks) > 0 { + // If there are missing blocks, fetch and cache them + err := fetchAndCacheBlocks(ctx, rpc, ms, missingBlocks) if err != nil { - log.Warn().Err(err).Msg("Unable to append more history") + log.Warn().Err(err).Msg("Failed to fetch missing blocks on page down") + // Handle error, perhaps by not changing the offset if blocks couldn't be fetched + break } - forceRedraw = true - redraw(ms, true) } - blockTable.SelectedRow = len(renderedBlocks) + + // Now that we've ensured the blocks are available, update windowOffset + windowOffset = targetOffset + + // Select the first row on the new page + blockTable.SelectedRow = 1 + + // Set a flag to indicate that the selected block should be updated based on the new offset setBlock = true + + // Force redraw to update the UI with the new page of blocks + forceRedraw = true + redraw(ms, true) + + // // reset to latest block when end is reached + // if len(renderedBlocks) < windowSize { + // windowOffset = 0 + // blockTable.SelectedRow = len(renderedBlocks) + // break + // } + // windowOffset += windowSize + // // good to go to next page but not enough blocks to fill page + // if windowOffset > len(allBlocks)-windowSize { + // err := appendOlderBlocks(ctx, ms, rpc) + // if err != nil { + // log.Warn().Err(err).Msg("Unable to append more history") + // } + // forceRedraw = true + // redraw(ms, true) + // } + // blockTable.SelectedRow = len(renderedBlocks) + // setBlock = true case "", "": windowOffset -= windowSize if windowOffset < 0 { @@ -677,6 +711,56 @@ func renderMonitorUI(ctx context.Context, ec *ethclient.Client, ms *monitorStatu } } +func calculateBlockNumberFromOffset(offset int, windowSize int, ms *monitorStatus) *big.Int { + // Assuming the head block (latest block) is at the top when offset is 0 + // and the list goes back in time as the offset increases: + + // Calculate the block number at the bottom of the current window. + latestBlockNumber := ms.HeadBlock.Int64() + bottomBlockNumber := latestBlockNumber - int64(offset) + + // Ensure that the calculated block number is not less than zero. + if bottomBlockNumber < 0 { + bottomBlockNumber = 0 + } + + // The block number we're interested in is `windowSize` blocks before the bottom block number, + // because when paging down, the user wants to see the next set of blocks. + targetBlockNumber := bottomBlockNumber - int64(windowSize) + + // Ensure the target block number is not less than zero. + if targetBlockNumber < 0 { + targetBlockNumber = 0 + } + + return big.NewInt(targetBlockNumber) +} + +func checkAndFetchMissingBlocks(ctx context.Context, ms *monitorStatus, rpc *ethrpc.Client, fromBlockNum, toBlockNum *big.Int) ([]*big.Int, error) { + var missingBlocks []*big.Int + + // Iterate over the range and check if each block is in the cache. + for i := new(big.Int).Set(fromBlockNum); i.Cmp(toBlockNum) <= 0; i.Add(i, one) { + if _, ok := ms.BlockCache.Get(i.String()); !ok { + // Block is not in cache, so mark it as missing. + missingBlocks = append(missingBlocks, new(big.Int).Set(i)) + } + } + + // If there are missing blocks, fetch them using getBlockRange. + if len(missingBlocks) > 0 { + // Fetch the blocks in the range [first missing block, last missing block]. + err := ms.getBlockRange(ctx, missingBlocks[0], missingBlocks[len(missingBlocks)-1], rpc) + if err != nil { + // Handle the error, such as logging or returning it. + return nil, err + } + } + + // Return the list of block numbers that were missing and are now fetched. + return missingBlocks, nil +} + func max(nums ...int) int { m := nums[0] for _, n := range nums { diff --git a/log.txt b/log.txt new file mode 100644 index 00000000..2faa2195 --- /dev/null +++ b/log.txt @@ -0,0 +1,8560 @@ +7:02AM DBG Starting logger in console mode +7:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337405 PeerCount=6 +7:02AM DBG Fetching latest blocks from=337356 max=0 to=337405 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337405,"MaxBlockRetrieved":337405,"MinBlockRetrieved":337356,"PeerCount":6,"PendingCount":0} +7:02AM DBG Fetching older blocks from=337306 min=337356 to=337355 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337405,"MaxBlockRetrieved":337405,"MinBlockRetrieved":337306,"PeerCount":6,"PendingCount":0} +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=31 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337405,"MaxBlockRetrieved":337405,"MinBlockRetrieved":337306,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337343 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=32 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337405,"MaxBlockRetrieved":337405,"MinBlockRetrieved":337306,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337342 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=33 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337405,"MaxBlockRetrieved":337405,"MinBlockRetrieved":337306,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337341 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=34 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337405,"MaxBlockRetrieved":337405,"MinBlockRetrieved":337306,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337340 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=35 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337405,"MaxBlockRetrieved":337405,"MinBlockRetrieved":337306,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337339 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=36 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337405,"MaxBlockRetrieved":337405,"MinBlockRetrieved":337306,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337338 +7:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337410 PeerCount=6 +7:02AM DBG Fetching latest blocks from=337406 max=337405 to=337410 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=37 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337405,"MinBlockRetrieved":337306,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337337 +7:02AM DBG Fetching older blocks from=337256 min=337306 to=337305 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=38 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337306,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337336 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=39 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337335 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=40 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337334 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=41 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337333 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=42 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337332 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=43 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337331 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=44 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337330 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=45 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337329 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=46 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337328 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=47 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337327 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=48 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337326 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=49 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337325 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=50 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337324 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=51 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337323 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=52 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337322 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=53 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337321 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=54 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337320 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=55 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337319 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=56 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337318 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=57 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337317 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=58 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337316 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=59 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337315 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=60 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337314 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=61 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337313 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=62 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337312 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=63 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337311 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=64 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337310 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=65 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337309 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=66 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337308 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337307 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337410,"MaxBlockRetrieved":337410,"MinBlockRetrieved":337256,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337306 +7:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337416 PeerCount=6 +7:02AM DBG Fetching latest blocks from=337411 max=337410 to=337416 +7:02AM DBG Fetching older blocks from=337206 min=337256 to=337255 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337416,"MaxBlockRetrieved":337416,"MinBlockRetrieved":337206,"PeerCount":6,"PendingCount":0} +7:02AM DBG Fetching older blocks from=337156 min=337206 to=337205 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337416,"MaxBlockRetrieved":337416,"MinBlockRetrieved":337156,"PeerCount":6,"PendingCount":0} +7:02AM TRC Unknown ui event id= +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337416,"MaxBlockRetrieved":337416,"MinBlockRetrieved":337156,"PeerCount":6,"PendingCount":0} +7:02AM TRC Unknown ui event id= +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337416,"MaxBlockRetrieved":337416,"MinBlockRetrieved":337156,"PeerCount":6,"PendingCount":0} +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337416,"MaxBlockRetrieved":337416,"MinBlockRetrieved":337156,"PeerCount":6,"PendingCount":0} +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337416,"MaxBlockRetrieved":337416,"MinBlockRetrieved":337156,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337255 +7:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337421 PeerCount=6 +7:02AM DBG Fetching latest blocks from=337417 max=337416 to=337421 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337416,"MinBlockRetrieved":337156,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337194 +7:02AM DBG Fetching older blocks from=337106 min=337156 to=337155 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337106,"PeerCount":6,"PendingCount":0} +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337106,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337163 +7:02AM DBG Fetching older blocks from=337056 min=337106 to=337105 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=7 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337057 +7:02AM DBG Up currIdx=6 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337058 +7:02AM DBG Up currIdx=5 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337059 +7:02AM DBG Up currIdx=4 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337060 +7:02AM DBG Up currIdx=3 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337061 +7:02AM DBG Up currIdx=2 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337062 +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337421,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337427 PeerCount=6 +7:02AM DBG Fetching latest blocks from=337422 max=337421 to=337427 +7:02AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337421,"MinBlockRetrieved":337056,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337086 +7:02AM DBG Fetching older blocks from=337006 min=337056 to=337055 +7:02AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337085 +7:02AM DBG Down allBlocks=100 currIdx=3 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337084 +7:02AM DBG Down allBlocks=100 currIdx=4 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337083 +7:02AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337082 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Down allBlocks=100 currIdx=6 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337081 +7:02AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337080 +7:02AM DBG Down allBlocks=100 currIdx=8 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337079 +7:02AM DBG Down allBlocks=100 currIdx=9 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337078 +7:02AM DBG Down allBlocks=100 currIdx=10 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337077 +7:02AM DBG Down allBlocks=100 currIdx=11 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337076 +7:02AM DBG Down allBlocks=100 currIdx=12 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337075 +7:02AM DBG Down allBlocks=100 currIdx=13 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337074 +7:02AM DBG Down allBlocks=100 currIdx=14 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337073 +7:02AM DBG Down allBlocks=100 currIdx=15 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337072 +7:02AM DBG Down allBlocks=100 currIdx=16 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337071 +7:02AM DBG Down allBlocks=100 currIdx=17 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337070 +7:02AM DBG Down allBlocks=100 currIdx=18 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337069 +7:02AM DBG Down allBlocks=100 currIdx=19 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337068 +7:02AM DBG Down allBlocks=100 currIdx=20 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337067 +7:02AM DBG Down allBlocks=100 currIdx=21 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337066 +7:02AM DBG Down allBlocks=100 currIdx=22 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337065 +7:02AM DBG Down allBlocks=100 currIdx=23 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337064 +7:02AM DBG Down allBlocks=100 currIdx=24 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337063 +7:02AM DBG Down allBlocks=100 currIdx=25 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337062 +7:02AM DBG Down allBlocks=100 currIdx=26 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337061 +7:02AM DBG Down allBlocks=100 currIdx=27 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337060 +7:02AM DBG Down allBlocks=100 currIdx=28 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337059 +7:02AM DBG Down allBlocks=100 currIdx=29 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337058 +7:02AM DBG Down allBlocks=100 currIdx=30 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337057 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337056 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337056 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337056 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337056 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337056 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337056 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337056 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337056 +7:02AM DBG Up currIdx=31 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337057 +7:02AM DBG Up currIdx=30 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337058 +7:02AM DBG Up currIdx=29 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337059 +7:02AM DBG Up currIdx=28 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337060 +7:02AM DBG Up currIdx=27 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337061 +7:02AM DBG Up currIdx=26 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337427,"MaxBlockRetrieved":337427,"MinBlockRetrieved":337006,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=337062 +7:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337432 PeerCount=6 +7:02AM DBG Fetching latest blocks from=337428 max=337427 to=337432 +7:02AM DBG Fetching older blocks from=336956 min=337006 to=337005 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336956,"PeerCount":6,"PendingCount":0} +7:02AM DBG Fetching older blocks from=336906 min=336956 to=336955 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336906 +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=2 windowOffset=98 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336906 +7:02AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=2 windowOffset=98 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336906 +7:02AM DBG Up currIdx=2 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336907 +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337432,"MaxBlockRetrieved":337432,"MinBlockRetrieved":336906,"PeerCount":6,"PendingCount":0} +7:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337438 PeerCount=6 +7:02AM DBG Fetching latest blocks from=337433 max=337432 to=337438 +7:02AM DBG Fetching older blocks from=336856 min=336906 to=336905 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=31 windowOffset=55 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336949 +7:02AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=31 windowOffset=55 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336948 +7:02AM DBG Down allBlocks=100 currIdx=3 dy=35 renderedBlocks=31 windowOffset=55 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336947 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336894 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337438,"MaxBlockRetrieved":337438,"MinBlockRetrieved":336856,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336863 +7:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337443 PeerCount=6 +7:02AM DBG Fetching latest blocks from=337439 max=337438 to=337443 +7:02AM DBG Fetching older blocks from=336806 min=336856 to=336855 +7:02AM DBG Fetching older blocks from=336756 min=336806 to=336805 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Up currIdx=7 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336757 +7:02AM DBG Up currIdx=6 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336758 +7:02AM DBG Up currIdx=5 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336759 +7:02AM DBG Up currIdx=4 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336760 +7:02AM DBG Up currIdx=3 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336761 +7:02AM DBG Up currIdx=2 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336762 +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Up currIdx=1 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336786 +7:02AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336785 +7:02AM DBG Down allBlocks=100 currIdx=3 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336784 +7:02AM DBG Down allBlocks=100 currIdx=4 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336783 +7:02AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336782 +7:02AM DBG Down allBlocks=100 currIdx=6 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336781 +7:02AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336780 +7:02AM DBG Down allBlocks=100 currIdx=8 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337443,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336779 +7:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337449 PeerCount=6 +7:02AM DBG Fetching latest blocks from=337444 max=337443 to=337449 +7:02AM DBG Down allBlocks=100 currIdx=9 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337443,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336778 +7:02AM DBG Fetching older blocks from=336706 min=336756 to=336755 +7:02AM DBG Down allBlocks=100 currIdx=10 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336777 +7:02AM DBG Down allBlocks=100 currIdx=11 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336756,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336776 +7:02AM DBG Down allBlocks=100 currIdx=12 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336775 +7:02AM DBG Down allBlocks=100 currIdx=13 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336774 +7:02AM DBG Down allBlocks=100 currIdx=14 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336773 +7:02AM DBG Down allBlocks=100 currIdx=15 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336772 +7:02AM DBG Down allBlocks=100 currIdx=16 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336771 +7:02AM DBG Down allBlocks=100 currIdx=17 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336770 +7:02AM DBG Down allBlocks=100 currIdx=18 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336769 +7:02AM DBG Down allBlocks=100 currIdx=19 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336768 +7:02AM DBG Down allBlocks=100 currIdx=20 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336767 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Down allBlocks=100 currIdx=21 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336766 +7:02AM DBG Down allBlocks=100 currIdx=22 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336765 +7:02AM DBG Down allBlocks=100 currIdx=23 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336764 +7:02AM DBG Down allBlocks=100 currIdx=24 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336763 +7:02AM DBG Down allBlocks=100 currIdx=25 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336762 +7:02AM DBG Down allBlocks=100 currIdx=26 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336761 +7:02AM DBG Down allBlocks=100 currIdx=27 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336760 +7:02AM DBG Down allBlocks=100 currIdx=28 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336759 +7:02AM DBG Down allBlocks=100 currIdx=29 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336758 +7:02AM DBG Down allBlocks=100 currIdx=30 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336757 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337449,"MaxBlockRetrieved":337449,"MinBlockRetrieved":336706,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337454 PeerCount=6 +7:02AM DBG Fetching latest blocks from=337450 max=337449 to=337454 +7:02AM DBG Fetching older blocks from=336656 min=336706 to=336705 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337454,"MaxBlockRetrieved":337454,"MinBlockRetrieved":336656,"PeerCount":6,"PendingCount":0} +7:02AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +7:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337454,"MaxBlockRetrieved":337454,"MinBlockRetrieved":336656,"PeerCount":6,"PendingCount":0} +7:02AM DBG Selected block changed blockNumber=336756 +7:03AM DBG Fetching older blocks from=336606 min=336656 to=336655 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337454,"MaxBlockRetrieved":337454,"MinBlockRetrieved":336606,"PeerCount":6,"PendingCount":0} +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337454,"MaxBlockRetrieved":337454,"MinBlockRetrieved":336606,"PeerCount":6,"PendingCount":0} +7:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337460 PeerCount=6 +7:03AM DBG Fetching latest blocks from=337455 max=337454 to=337460 +7:03AM DBG Fetching older blocks from=336556 min=336606 to=336605 +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Selected block changed blockNumber=336606 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337460,"MaxBlockRetrieved":337460,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337465 PeerCount=6 +7:03AM DBG Fetching latest blocks from=337461 max=337460 to=337465 +7:03AM DBG Fetching older blocks from=336506 min=336556 to=336555 +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336556,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Up currIdx=1 windowSize=31 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337465,"MaxBlockRetrieved":337465,"MinBlockRetrieved":336506,"PeerCount":6,"PendingCount":0} +7:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337471 PeerCount=6 +7:03AM DBG Fetching latest blocks from=337466 max=337465 to=337471 +7:03AM DBG Fetching older blocks from=336456 min=336506 to=336505 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337471,"MaxBlockRetrieved":337471,"MinBlockRetrieved":336456,"PeerCount":6,"PendingCount":0} +7:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337476 PeerCount=6 +7:03AM DBG Fetching latest blocks from=337472 max=337471 to=337476 +7:03AM DBG Fetching older blocks from=336406 min=336456 to=336455 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337476,"MaxBlockRetrieved":337476,"MinBlockRetrieved":336406,"PeerCount":6,"PendingCount":0} +7:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337482 PeerCount=6 +7:03AM DBG Fetching latest blocks from=337477 max=337476 to=337482 +7:03AM DBG Fetching older blocks from=336356 min=336406 to=336405 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337482,"MaxBlockRetrieved":337482,"MinBlockRetrieved":336356,"PeerCount":6,"PendingCount":0} +7:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337488 PeerCount=6 +7:03AM DBG Fetching latest blocks from=337483 max=337482 to=337488 +7:03AM DBG Fetching older blocks from=336306 min=336356 to=336355 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337488,"MaxBlockRetrieved":337488,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337493 PeerCount=6 +7:03AM DBG Fetching latest blocks from=337489 max=337488 to=337493 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337493,"MaxBlockRetrieved":337493,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337498 PeerCount=6 +7:03AM DBG Fetching latest blocks from=337494 max=337493 to=337498 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337498,"MaxBlockRetrieved":337498,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337504 PeerCount=6 +7:03AM DBG Fetching latest blocks from=337499 max=337498 to=337504 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337504,"MaxBlockRetrieved":337504,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337509 PeerCount=6 +7:03AM DBG Fetching latest blocks from=337505 max=337504 to=337509 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337509,"MaxBlockRetrieved":337504,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337514 PeerCount=6 +7:03AM DBG Fetching latest blocks from=337510 max=337509 to=337514 +7:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337514,"MaxBlockRetrieved":337514,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337520 PeerCount=6 +7:04AM DBG Fetching latest blocks from=337515 max=337514 to=337520 +7:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337520,"MaxBlockRetrieved":337514,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337525 PeerCount=6 +7:04AM DBG Fetching latest blocks from=337521 max=337520 to=337525 +7:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337525,"MaxBlockRetrieved":337525,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337531 PeerCount=6 +7:04AM DBG Fetching latest blocks from=337526 max=337525 to=337531 +7:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337531,"MaxBlockRetrieved":337531,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337536 PeerCount=6 +7:04AM DBG Fetching latest blocks from=337532 max=337531 to=337536 +7:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337536,"MaxBlockRetrieved":337536,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337541 PeerCount=6 +7:04AM DBG Fetching latest blocks from=337537 max=337536 to=337541 +7:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337541,"MaxBlockRetrieved":337541,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337547 PeerCount=6 +7:04AM DBG Fetching latest blocks from=337542 max=337541 to=337547 +7:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337547,"MaxBlockRetrieved":337547,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337552 PeerCount=6 +7:04AM DBG Fetching latest blocks from=337548 max=337547 to=337552 +7:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337552,"MaxBlockRetrieved":337552,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337558 PeerCount=6 +7:04AM DBG Fetching latest blocks from=337553 max=337552 to=337558 +7:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337558,"MaxBlockRetrieved":337558,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337563 PeerCount=6 +7:04AM DBG Fetching latest blocks from=337559 max=337558 to=337563 +7:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337563,"MaxBlockRetrieved":337563,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337568 PeerCount=6 +7:04AM DBG Fetching latest blocks from=337564 max=337563 to=337568 +7:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337568,"MaxBlockRetrieved":337568,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337574 PeerCount=6 +7:04AM DBG Fetching latest blocks from=337569 max=337568 to=337574 +7:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337574,"MaxBlockRetrieved":337574,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337579 PeerCount=6 +7:05AM DBG Fetching latest blocks from=337575 max=337574 to=337579 +7:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337579,"MaxBlockRetrieved":337579,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337584 PeerCount=6 +7:05AM DBG Fetching latest blocks from=337580 max=337579 to=337584 +7:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337584,"MaxBlockRetrieved":337584,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337590 PeerCount=6 +7:05AM DBG Fetching latest blocks from=337585 max=337584 to=337590 +7:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337590,"MaxBlockRetrieved":337590,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337595 PeerCount=6 +7:05AM DBG Fetching latest blocks from=337591 max=337590 to=337595 +7:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337595,"MaxBlockRetrieved":337595,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337601 PeerCount=6 +7:05AM DBG Fetching latest blocks from=337596 max=337595 to=337601 +7:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337601,"MaxBlockRetrieved":337601,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337606 PeerCount=6 +7:05AM DBG Fetching latest blocks from=337602 max=337601 to=337606 +7:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337606,"MaxBlockRetrieved":337606,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337611 PeerCount=6 +7:05AM DBG Fetching latest blocks from=337607 max=337606 to=337611 +7:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337611,"MaxBlockRetrieved":337606,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337617 PeerCount=6 +7:05AM DBG Fetching latest blocks from=337612 max=337611 to=337617 +7:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337617,"MaxBlockRetrieved":337617,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337622 PeerCount=6 +7:05AM DBG Fetching latest blocks from=337618 max=337617 to=337622 +7:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337622,"MaxBlockRetrieved":337622,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337627 PeerCount=6 +7:05AM DBG Fetching latest blocks from=337623 max=337622 to=337627 +7:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337627,"MaxBlockRetrieved":337627,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337633 PeerCount=6 +7:05AM DBG Fetching latest blocks from=337628 max=337627 to=337633 +7:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337633,"MaxBlockRetrieved":337633,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337638 PeerCount=6 +7:06AM DBG Fetching latest blocks from=337634 max=337633 to=337638 +7:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337638,"MaxBlockRetrieved":337638,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337644 PeerCount=6 +7:06AM DBG Fetching latest blocks from=337639 max=337638 to=337644 +7:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337644,"MaxBlockRetrieved":337644,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337649 PeerCount=6 +7:06AM DBG Fetching latest blocks from=337645 max=337644 to=337649 +7:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337649,"MaxBlockRetrieved":337649,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337654 PeerCount=6 +7:06AM DBG Fetching latest blocks from=337650 max=337649 to=337654 +7:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337654,"MaxBlockRetrieved":337654,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337660 PeerCount=6 +7:06AM DBG Fetching latest blocks from=337655 max=337654 to=337660 +7:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337660,"MaxBlockRetrieved":337660,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337665 PeerCount=6 +7:06AM DBG Fetching latest blocks from=337661 max=337660 to=337665 +7:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337665,"MaxBlockRetrieved":337665,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337671 PeerCount=6 +7:06AM DBG Fetching latest blocks from=337666 max=337665 to=337671 +7:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337671,"MaxBlockRetrieved":337671,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337676 PeerCount=6 +7:06AM DBG Fetching latest blocks from=337672 max=337671 to=337676 +7:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337676,"MaxBlockRetrieved":337676,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337681 PeerCount=6 +7:06AM DBG Fetching latest blocks from=337677 max=337676 to=337681 +7:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337681,"MaxBlockRetrieved":337681,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337687 PeerCount=6 +7:06AM DBG Fetching latest blocks from=337682 max=337681 to=337687 +7:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337687,"MaxBlockRetrieved":337687,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337692 PeerCount=6 +7:06AM DBG Fetching latest blocks from=337688 max=337687 to=337692 +7:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337692,"MaxBlockRetrieved":337692,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337697 PeerCount=6 +7:07AM DBG Fetching latest blocks from=337693 max=337692 to=337697 +7:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337697,"MaxBlockRetrieved":337697,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337703 PeerCount=6 +7:07AM DBG Fetching latest blocks from=337698 max=337697 to=337703 +7:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337703,"MaxBlockRetrieved":337697,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337708 PeerCount=6 +7:07AM DBG Fetching latest blocks from=337704 max=337703 to=337708 +7:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337708,"MaxBlockRetrieved":337708,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337714 PeerCount=6 +7:07AM DBG Fetching latest blocks from=337709 max=337708 to=337714 +7:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337714,"MaxBlockRetrieved":337714,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337719 PeerCount=6 +7:07AM DBG Fetching latest blocks from=337715 max=337714 to=337719 +7:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337719,"MaxBlockRetrieved":337719,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337725 PeerCount=6 +7:07AM DBG Fetching latest blocks from=337720 max=337719 to=337725 +7:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337725,"MaxBlockRetrieved":337725,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337730 PeerCount=6 +7:07AM DBG Fetching latest blocks from=337726 max=337725 to=337730 +7:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337730,"MaxBlockRetrieved":337730,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337735 PeerCount=6 +7:07AM DBG Fetching latest blocks from=337731 max=337730 to=337735 +7:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337735,"MaxBlockRetrieved":337735,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337741 PeerCount=6 +7:07AM DBG Fetching latest blocks from=337736 max=337735 to=337741 +7:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337741,"MaxBlockRetrieved":337735,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337746 PeerCount=6 +7:07AM DBG Fetching latest blocks from=337742 max=337741 to=337746 +7:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337746,"MaxBlockRetrieved":337746,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337752 PeerCount=6 +7:08AM DBG Fetching latest blocks from=337747 max=337746 to=337752 +7:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337752,"MaxBlockRetrieved":337746,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337757 PeerCount=6 +7:08AM DBG Fetching latest blocks from=337753 max=337752 to=337757 +7:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337757,"MaxBlockRetrieved":337757,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337762 PeerCount=6 +7:08AM DBG Fetching latest blocks from=337758 max=337757 to=337762 +7:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337762,"MaxBlockRetrieved":337762,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337768 PeerCount=6 +7:08AM DBG Fetching latest blocks from=337763 max=337762 to=337768 +7:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337768,"MaxBlockRetrieved":337768,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337773 PeerCount=6 +7:08AM DBG Fetching latest blocks from=337769 max=337768 to=337773 +7:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337773,"MaxBlockRetrieved":337773,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337778 PeerCount=6 +7:08AM DBG Fetching latest blocks from=337774 max=337773 to=337778 +7:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337778,"MaxBlockRetrieved":337778,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337784 PeerCount=6 +7:08AM DBG Fetching latest blocks from=337779 max=337778 to=337784 +7:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337784,"MaxBlockRetrieved":337784,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337790 PeerCount=6 +7:08AM DBG Fetching latest blocks from=337785 max=337784 to=337790 +7:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337790,"MaxBlockRetrieved":337790,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337795 PeerCount=6 +7:08AM DBG Fetching latest blocks from=337791 max=337790 to=337795 +7:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337795,"MaxBlockRetrieved":337795,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337800 PeerCount=6 +7:08AM DBG Fetching latest blocks from=337796 max=337795 to=337800 +7:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337800,"MaxBlockRetrieved":337800,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337806 PeerCount=6 +7:08AM DBG Fetching latest blocks from=337801 max=337800 to=337806 +7:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337806,"MaxBlockRetrieved":337806,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337811 PeerCount=6 +7:09AM DBG Fetching latest blocks from=337807 max=337806 to=337811 +7:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337811,"MaxBlockRetrieved":337811,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337816 PeerCount=6 +7:09AM DBG Fetching latest blocks from=337812 max=337811 to=337816 +7:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337816,"MaxBlockRetrieved":337816,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337822 PeerCount=6 +7:09AM DBG Fetching latest blocks from=337817 max=337816 to=337822 +7:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337822,"MaxBlockRetrieved":337822,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337827 PeerCount=6 +7:09AM DBG Fetching latest blocks from=337823 max=337822 to=337827 +7:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337827,"MaxBlockRetrieved":337827,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337833 PeerCount=6 +7:09AM DBG Fetching latest blocks from=337828 max=337827 to=337833 +7:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337833,"MaxBlockRetrieved":337833,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337838 PeerCount=6 +7:09AM DBG Fetching latest blocks from=337834 max=337833 to=337838 +7:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337838,"MaxBlockRetrieved":337838,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337843 PeerCount=6 +7:09AM DBG Fetching latest blocks from=337839 max=337838 to=337843 +7:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337843,"MaxBlockRetrieved":337843,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337849 PeerCount=6 +7:09AM DBG Fetching latest blocks from=337844 max=337843 to=337849 +7:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337849,"MaxBlockRetrieved":337849,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337854 PeerCount=6 +7:09AM DBG Fetching latest blocks from=337850 max=337849 to=337854 +7:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337854,"MaxBlockRetrieved":337854,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337860 PeerCount=6 +7:09AM DBG Fetching latest blocks from=337855 max=337854 to=337860 +7:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337860,"MaxBlockRetrieved":337854,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337865 PeerCount=6 +7:09AM DBG Fetching latest blocks from=337861 max=337860 to=337865 +7:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337865,"MaxBlockRetrieved":337865,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337870 PeerCount=6 +7:10AM DBG Fetching latest blocks from=337866 max=337865 to=337870 +7:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337870,"MaxBlockRetrieved":337865,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337876 PeerCount=6 +7:10AM DBG Fetching latest blocks from=337871 max=337870 to=337876 +7:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337876,"MaxBlockRetrieved":337876,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337881 PeerCount=6 +7:10AM DBG Fetching latest blocks from=337877 max=337876 to=337881 +7:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337881,"MaxBlockRetrieved":337881,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337886 PeerCount=6 +7:10AM DBG Fetching latest blocks from=337882 max=337881 to=337886 +7:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337886,"MaxBlockRetrieved":337886,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337892 PeerCount=6 +7:10AM DBG Fetching latest blocks from=337887 max=337886 to=337892 +7:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337892,"MaxBlockRetrieved":337892,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337897 PeerCount=6 +7:10AM DBG Fetching latest blocks from=337893 max=337892 to=337897 +7:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337897,"MaxBlockRetrieved":337897,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337903 PeerCount=6 +7:10AM DBG Fetching latest blocks from=337898 max=337897 to=337903 +7:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337903,"MaxBlockRetrieved":337903,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337908 PeerCount=6 +7:10AM DBG Fetching latest blocks from=337904 max=337903 to=337908 +7:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337908,"MaxBlockRetrieved":337908,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337913 PeerCount=6 +7:10AM DBG Fetching latest blocks from=337909 max=337908 to=337913 +7:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337913,"MaxBlockRetrieved":337913,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337919 PeerCount=6 +7:10AM DBG Fetching latest blocks from=337914 max=337913 to=337919 +7:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337919,"MaxBlockRetrieved":337919,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337924 PeerCount=6 +7:10AM DBG Fetching latest blocks from=337920 max=337919 to=337924 +7:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337924,"MaxBlockRetrieved":337924,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337929 PeerCount=6 +7:11AM DBG Fetching latest blocks from=337925 max=337924 to=337929 +7:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337929,"MaxBlockRetrieved":337929,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337935 PeerCount=6 +7:11AM DBG Fetching latest blocks from=337930 max=337929 to=337935 +7:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337935,"MaxBlockRetrieved":337935,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337940 PeerCount=6 +7:11AM DBG Fetching latest blocks from=337936 max=337935 to=337940 +7:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337940,"MaxBlockRetrieved":337935,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337946 PeerCount=6 +7:11AM DBG Fetching latest blocks from=337941 max=337940 to=337946 +7:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337946,"MaxBlockRetrieved":337946,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337951 PeerCount=6 +7:11AM DBG Fetching latest blocks from=337947 max=337946 to=337951 +7:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337951,"MaxBlockRetrieved":337951,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337956 PeerCount=6 +7:11AM DBG Fetching latest blocks from=337952 max=337951 to=337956 +7:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337956,"MaxBlockRetrieved":337956,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337962 PeerCount=6 +7:11AM DBG Fetching latest blocks from=337957 max=337956 to=337962 +7:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337962,"MaxBlockRetrieved":337962,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337967 PeerCount=6 +7:11AM DBG Fetching latest blocks from=337963 max=337962 to=337967 +7:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337967,"MaxBlockRetrieved":337967,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337973 PeerCount=6 +7:11AM DBG Fetching latest blocks from=337968 max=337967 to=337973 +7:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337973,"MaxBlockRetrieved":337973,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337978 PeerCount=6 +7:11AM DBG Fetching latest blocks from=337974 max=337973 to=337978 +7:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337978,"MaxBlockRetrieved":337978,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337983 PeerCount=6 +7:11AM DBG Fetching latest blocks from=337979 max=337978 to=337983 +7:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337983,"MaxBlockRetrieved":337983,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337989 PeerCount=6 +7:12AM DBG Fetching latest blocks from=337984 max=337983 to=337989 +7:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337989,"MaxBlockRetrieved":337989,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=337994 PeerCount=6 +7:12AM DBG Fetching latest blocks from=337990 max=337989 to=337994 +7:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":337994,"MaxBlockRetrieved":337994,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338000 PeerCount=6 +7:12AM DBG Fetching latest blocks from=337995 max=337994 to=338000 +7:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338000,"MaxBlockRetrieved":337994,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338005 PeerCount=6 +7:12AM DBG Fetching latest blocks from=338001 max=338000 to=338005 +7:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338005,"MaxBlockRetrieved":338005,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338010 PeerCount=6 +7:12AM DBG Fetching latest blocks from=338006 max=338005 to=338010 +7:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338010,"MaxBlockRetrieved":338005,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338016 PeerCount=6 +7:12AM DBG Fetching latest blocks from=338011 max=338010 to=338016 +7:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338016,"MaxBlockRetrieved":338016,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338021 PeerCount=6 +7:12AM DBG Fetching latest blocks from=338017 max=338016 to=338021 +7:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338021,"MaxBlockRetrieved":338021,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338027 PeerCount=6 +7:12AM DBG Fetching latest blocks from=338022 max=338021 to=338027 +7:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338027,"MaxBlockRetrieved":338027,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338032 PeerCount=6 +7:12AM DBG Fetching latest blocks from=338028 max=338027 to=338032 +7:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338032,"MaxBlockRetrieved":338032,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338037 PeerCount=6 +7:12AM DBG Fetching latest blocks from=338033 max=338032 to=338037 +7:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338037,"MaxBlockRetrieved":338037,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338043 PeerCount=6 +7:13AM DBG Fetching latest blocks from=338038 max=338037 to=338043 +7:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338043,"MaxBlockRetrieved":338043,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338048 PeerCount=6 +7:13AM DBG Fetching latest blocks from=338044 max=338043 to=338048 +7:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338048,"MaxBlockRetrieved":338048,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338054 PeerCount=6 +7:13AM DBG Fetching latest blocks from=338049 max=338048 to=338054 +7:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338054,"MaxBlockRetrieved":338054,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338059 PeerCount=6 +7:13AM DBG Fetching latest blocks from=338055 max=338054 to=338059 +7:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338059,"MaxBlockRetrieved":338059,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338064 PeerCount=6 +7:13AM DBG Fetching latest blocks from=338060 max=338059 to=338064 +7:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338064,"MaxBlockRetrieved":338064,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338070 PeerCount=6 +7:13AM DBG Fetching latest blocks from=338065 max=338064 to=338070 +7:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338070,"MaxBlockRetrieved":338064,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338075 PeerCount=6 +7:13AM DBG Fetching latest blocks from=338071 max=338070 to=338075 +7:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338075,"MaxBlockRetrieved":338075,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338081 PeerCount=6 +7:13AM DBG Fetching latest blocks from=338076 max=338075 to=338081 +7:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338081,"MaxBlockRetrieved":338081,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338086 PeerCount=6 +7:13AM DBG Fetching latest blocks from=338082 max=338081 to=338086 +7:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338086,"MaxBlockRetrieved":338086,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338091 PeerCount=6 +7:13AM DBG Fetching latest blocks from=338087 max=338086 to=338091 +7:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338091,"MaxBlockRetrieved":338091,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338097 PeerCount=6 +7:13AM DBG Fetching latest blocks from=338092 max=338091 to=338097 +7:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338097,"MaxBlockRetrieved":338097,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338102 PeerCount=6 +7:14AM DBG Fetching latest blocks from=338098 max=338097 to=338102 +7:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338102,"MaxBlockRetrieved":338102,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338108 PeerCount=6 +7:14AM DBG Fetching latest blocks from=338103 max=338102 to=338108 +7:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338108,"MaxBlockRetrieved":338108,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338113 PeerCount=6 +7:14AM DBG Fetching latest blocks from=338109 max=338108 to=338113 +7:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338113,"MaxBlockRetrieved":338113,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338118 PeerCount=6 +7:14AM DBG Fetching latest blocks from=338114 max=338113 to=338118 +7:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338118,"MaxBlockRetrieved":338118,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338124 PeerCount=6 +7:14AM DBG Fetching latest blocks from=338119 max=338118 to=338124 +7:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338124,"MaxBlockRetrieved":338124,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338129 PeerCount=6 +7:14AM DBG Fetching latest blocks from=338125 max=338124 to=338129 +7:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338129,"MaxBlockRetrieved":338124,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338135 PeerCount=6 +7:14AM DBG Fetching latest blocks from=338130 max=338129 to=338135 +7:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338135,"MaxBlockRetrieved":338135,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338140 PeerCount=6 +7:14AM DBG Fetching latest blocks from=338136 max=338135 to=338140 +7:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338140,"MaxBlockRetrieved":338140,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338145 PeerCount=6 +7:14AM DBG Fetching latest blocks from=338141 max=338140 to=338145 +7:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338145,"MaxBlockRetrieved":338145,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338151 PeerCount=6 +7:14AM DBG Fetching latest blocks from=338146 max=338145 to=338151 +7:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338151,"MaxBlockRetrieved":338151,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338156 PeerCount=6 +7:14AM DBG Fetching latest blocks from=338152 max=338151 to=338156 +7:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338156,"MaxBlockRetrieved":338156,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338162 PeerCount=6 +7:15AM DBG Fetching latest blocks from=338157 max=338156 to=338162 +7:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338162,"MaxBlockRetrieved":338162,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338167 PeerCount=6 +7:15AM DBG Fetching latest blocks from=338163 max=338162 to=338167 +7:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338167,"MaxBlockRetrieved":338167,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338172 PeerCount=6 +7:15AM DBG Fetching latest blocks from=338168 max=338167 to=338172 +7:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338172,"MaxBlockRetrieved":338172,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338178 PeerCount=6 +7:15AM DBG Fetching latest blocks from=338173 max=338172 to=338178 +7:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338178,"MaxBlockRetrieved":338178,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338183 PeerCount=6 +7:15AM DBG Fetching latest blocks from=338179 max=338178 to=338183 +7:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338183,"MaxBlockRetrieved":338183,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338189 PeerCount=6 +7:15AM DBG Fetching latest blocks from=338184 max=338183 to=338189 +7:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338189,"MaxBlockRetrieved":338183,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338194 PeerCount=6 +7:15AM DBG Fetching latest blocks from=338190 max=338189 to=338194 +7:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338194,"MaxBlockRetrieved":338194,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338199 PeerCount=6 +7:15AM DBG Fetching latest blocks from=338195 max=338194 to=338199 +7:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338199,"MaxBlockRetrieved":338199,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338205 PeerCount=6 +7:15AM DBG Fetching latest blocks from=338200 max=338199 to=338205 +7:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338205,"MaxBlockRetrieved":338205,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338210 PeerCount=6 +7:15AM DBG Fetching latest blocks from=338206 max=338205 to=338210 +7:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338210,"MaxBlockRetrieved":338210,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338216 PeerCount=6 +7:15AM DBG Fetching latest blocks from=338211 max=338210 to=338216 +7:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338216,"MaxBlockRetrieved":338216,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338221 PeerCount=6 +7:16AM DBG Fetching latest blocks from=338217 max=338216 to=338221 +7:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338221,"MaxBlockRetrieved":338221,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338226 PeerCount=6 +7:16AM DBG Fetching latest blocks from=338222 max=338221 to=338226 +7:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338226,"MaxBlockRetrieved":338226,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338232 PeerCount=6 +7:16AM DBG Fetching latest blocks from=338227 max=338226 to=338232 +7:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338232,"MaxBlockRetrieved":338232,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338237 PeerCount=6 +7:16AM DBG Fetching latest blocks from=338233 max=338232 to=338237 +7:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338237,"MaxBlockRetrieved":338237,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338242 PeerCount=6 +7:16AM DBG Fetching latest blocks from=338238 max=338237 to=338242 +7:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338242,"MaxBlockRetrieved":338242,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338248 PeerCount=6 +7:16AM DBG Fetching latest blocks from=338243 max=338242 to=338248 +7:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338248,"MaxBlockRetrieved":338242,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338253 PeerCount=6 +7:16AM DBG Fetching latest blocks from=338249 max=338248 to=338253 +7:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338253,"MaxBlockRetrieved":338253,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338259 PeerCount=6 +7:16AM DBG Fetching latest blocks from=338254 max=338253 to=338259 +7:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338259,"MaxBlockRetrieved":338259,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338264 PeerCount=6 +7:16AM DBG Fetching latest blocks from=338260 max=338259 to=338264 +7:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338264,"MaxBlockRetrieved":338264,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338269 PeerCount=6 +7:16AM DBG Fetching latest blocks from=338265 max=338264 to=338269 +7:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338269,"MaxBlockRetrieved":338269,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338275 PeerCount=6 +7:16AM DBG Fetching latest blocks from=338270 max=338269 to=338275 +7:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338275,"MaxBlockRetrieved":338275,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338280 PeerCount=6 +7:17AM DBG Fetching latest blocks from=338276 max=338275 to=338280 +7:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338280,"MaxBlockRetrieved":338280,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338286 PeerCount=6 +7:17AM DBG Fetching latest blocks from=338281 max=338280 to=338286 +7:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338286,"MaxBlockRetrieved":338280,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338291 PeerCount=6 +7:17AM DBG Fetching latest blocks from=338287 max=338286 to=338291 +7:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338291,"MaxBlockRetrieved":338291,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338297 PeerCount=6 +7:17AM DBG Fetching latest blocks from=338292 max=338291 to=338297 +7:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338297,"MaxBlockRetrieved":338297,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338302 PeerCount=6 +7:17AM DBG Fetching latest blocks from=338298 max=338297 to=338302 +7:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338302,"MaxBlockRetrieved":338302,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338307 PeerCount=6 +7:17AM DBG Fetching latest blocks from=338303 max=338302 to=338307 +7:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338307,"MaxBlockRetrieved":338307,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338313 PeerCount=6 +7:17AM DBG Fetching latest blocks from=338308 max=338307 to=338313 +7:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338313,"MaxBlockRetrieved":338313,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338318 PeerCount=6 +7:17AM DBG Fetching latest blocks from=338314 max=338313 to=338318 +7:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338318,"MaxBlockRetrieved":338318,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338324 PeerCount=6 +7:17AM DBG Fetching latest blocks from=338319 max=338318 to=338324 +7:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338324,"MaxBlockRetrieved":338324,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338330 PeerCount=6 +7:17AM DBG Fetching latest blocks from=338325 max=338324 to=338330 +7:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338330,"MaxBlockRetrieved":338330,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338335 PeerCount=6 +7:18AM DBG Fetching latest blocks from=338331 max=338330 to=338335 +7:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338335,"MaxBlockRetrieved":338335,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338341 PeerCount=6 +7:18AM DBG Fetching latest blocks from=338336 max=338335 to=338341 +7:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338341,"MaxBlockRetrieved":338341,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338346 PeerCount=6 +7:18AM DBG Fetching latest blocks from=338342 max=338341 to=338346 +7:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338346,"MaxBlockRetrieved":338346,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338351 PeerCount=6 +7:18AM DBG Fetching latest blocks from=338347 max=338346 to=338351 +7:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338351,"MaxBlockRetrieved":338351,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338357 PeerCount=6 +7:18AM DBG Fetching latest blocks from=338352 max=338351 to=338357 +7:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338357,"MaxBlockRetrieved":338357,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338362 PeerCount=6 +7:18AM DBG Fetching latest blocks from=338358 max=338357 to=338362 +7:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338362,"MaxBlockRetrieved":338362,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338368 PeerCount=6 +7:18AM DBG Fetching latest blocks from=338363 max=338362 to=338368 +7:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338368,"MaxBlockRetrieved":338368,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338373 PeerCount=6 +7:18AM DBG Fetching latest blocks from=338369 max=338368 to=338373 +7:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338373,"MaxBlockRetrieved":338373,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338378 PeerCount=6 +7:18AM DBG Fetching latest blocks from=338374 max=338373 to=338378 +7:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338378,"MaxBlockRetrieved":338373,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338384 PeerCount=6 +7:18AM DBG Fetching latest blocks from=338379 max=338378 to=338384 +7:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338384,"MaxBlockRetrieved":338384,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338389 PeerCount=6 +7:18AM DBG Fetching latest blocks from=338385 max=338384 to=338389 +7:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338389,"MaxBlockRetrieved":338389,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338395 PeerCount=6 +7:19AM DBG Fetching latest blocks from=338390 max=338389 to=338395 +7:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338395,"MaxBlockRetrieved":338395,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338400 PeerCount=6 +7:19AM DBG Fetching latest blocks from=338396 max=338395 to=338400 +7:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338400,"MaxBlockRetrieved":338400,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338405 PeerCount=6 +7:19AM DBG Fetching latest blocks from=338401 max=338400 to=338405 +7:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338405,"MaxBlockRetrieved":338405,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338411 PeerCount=6 +7:19AM DBG Fetching latest blocks from=338406 max=338405 to=338411 +7:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338411,"MaxBlockRetrieved":338411,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338416 PeerCount=6 +7:19AM DBG Fetching latest blocks from=338412 max=338411 to=338416 +7:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338416,"MaxBlockRetrieved":338416,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338422 PeerCount=6 +7:19AM DBG Fetching latest blocks from=338417 max=338416 to=338422 +7:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338422,"MaxBlockRetrieved":338422,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338427 PeerCount=6 +7:19AM DBG Fetching latest blocks from=338423 max=338422 to=338427 +7:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338427,"MaxBlockRetrieved":338422,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338432 PeerCount=6 +7:19AM DBG Fetching latest blocks from=338428 max=338427 to=338432 +7:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338432,"MaxBlockRetrieved":338432,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338438 PeerCount=6 +7:19AM DBG Fetching latest blocks from=338433 max=338432 to=338438 +7:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338438,"MaxBlockRetrieved":338438,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338443 PeerCount=6 +7:19AM DBG Fetching latest blocks from=338439 max=338438 to=338443 +7:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338443,"MaxBlockRetrieved":338443,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338449 PeerCount=6 +7:19AM DBG Fetching latest blocks from=338444 max=338443 to=338449 +7:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338449,"MaxBlockRetrieved":338449,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338454 PeerCount=6 +7:20AM DBG Fetching latest blocks from=338450 max=338449 to=338454 +7:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338454,"MaxBlockRetrieved":338449,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338460 PeerCount=6 +7:20AM DBG Fetching latest blocks from=338455 max=338454 to=338460 +7:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338460,"MaxBlockRetrieved":338460,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338465 PeerCount=6 +7:20AM DBG Fetching latest blocks from=338461 max=338460 to=338465 +7:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338465,"MaxBlockRetrieved":338465,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338470 PeerCount=6 +7:20AM DBG Fetching latest blocks from=338466 max=338465 to=338470 +7:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338470,"MaxBlockRetrieved":338470,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338476 PeerCount=6 +7:20AM DBG Fetching latest blocks from=338471 max=338470 to=338476 +7:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338476,"MaxBlockRetrieved":338476,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338481 PeerCount=6 +7:20AM DBG Fetching latest blocks from=338477 max=338476 to=338481 +7:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338481,"MaxBlockRetrieved":338481,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338487 PeerCount=6 +7:20AM DBG Fetching latest blocks from=338482 max=338481 to=338487 +7:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338487,"MaxBlockRetrieved":338487,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338492 PeerCount=6 +7:20AM DBG Fetching latest blocks from=338488 max=338487 to=338492 +7:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338492,"MaxBlockRetrieved":338492,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338497 PeerCount=6 +7:20AM DBG Fetching latest blocks from=338493 max=338492 to=338497 +7:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338497,"MaxBlockRetrieved":338497,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338503 PeerCount=6 +7:20AM DBG Fetching latest blocks from=338498 max=338497 to=338503 +7:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338503,"MaxBlockRetrieved":338497,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338508 PeerCount=6 +7:20AM DBG Fetching latest blocks from=338504 max=338503 to=338508 +7:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338508,"MaxBlockRetrieved":338508,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338514 PeerCount=6 +7:21AM DBG Fetching latest blocks from=338509 max=338508 to=338514 +7:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338514,"MaxBlockRetrieved":338508,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338519 PeerCount=6 +7:21AM DBG Fetching latest blocks from=338515 max=338514 to=338519 +7:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338519,"MaxBlockRetrieved":338519,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338524 PeerCount=6 +7:21AM DBG Fetching latest blocks from=338520 max=338519 to=338524 +7:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338524,"MaxBlockRetrieved":338524,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338530 PeerCount=6 +7:21AM DBG Fetching latest blocks from=338525 max=338524 to=338530 +7:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338530,"MaxBlockRetrieved":338530,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338535 PeerCount=6 +7:21AM DBG Fetching latest blocks from=338531 max=338530 to=338535 +7:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338535,"MaxBlockRetrieved":338535,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338541 PeerCount=6 +7:21AM DBG Fetching latest blocks from=338536 max=338535 to=338541 +7:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338541,"MaxBlockRetrieved":338541,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338546 PeerCount=6 +7:21AM DBG Fetching latest blocks from=338542 max=338541 to=338546 +7:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338546,"MaxBlockRetrieved":338546,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338551 PeerCount=6 +7:21AM DBG Fetching latest blocks from=338547 max=338546 to=338551 +7:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338551,"MaxBlockRetrieved":338551,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338557 PeerCount=6 +7:21AM DBG Fetching latest blocks from=338552 max=338551 to=338557 +7:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338557,"MaxBlockRetrieved":338557,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338562 PeerCount=6 +7:21AM DBG Fetching latest blocks from=338558 max=338557 to=338562 +7:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338562,"MaxBlockRetrieved":338557,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338568 PeerCount=6 +7:21AM DBG Fetching latest blocks from=338563 max=338562 to=338568 +7:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338568,"MaxBlockRetrieved":338568,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338573 PeerCount=6 +7:22AM DBG Fetching latest blocks from=338569 max=338568 to=338573 +7:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338573,"MaxBlockRetrieved":338573,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338578 PeerCount=6 +7:22AM DBG Fetching latest blocks from=338574 max=338573 to=338578 +7:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338578,"MaxBlockRetrieved":338578,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338584 PeerCount=6 +7:22AM DBG Fetching latest blocks from=338579 max=338578 to=338584 +7:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338584,"MaxBlockRetrieved":338584,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338589 PeerCount=6 +7:22AM DBG Fetching latest blocks from=338585 max=338584 to=338589 +7:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338589,"MaxBlockRetrieved":338589,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338595 PeerCount=6 +7:22AM DBG Fetching latest blocks from=338590 max=338589 to=338595 +7:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338595,"MaxBlockRetrieved":338595,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338600 PeerCount=6 +7:22AM DBG Fetching latest blocks from=338596 max=338595 to=338600 +7:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338600,"MaxBlockRetrieved":338600,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338605 PeerCount=6 +7:22AM DBG Fetching latest blocks from=338601 max=338600 to=338605 +7:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338605,"MaxBlockRetrieved":338605,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338611 PeerCount=6 +7:22AM DBG Fetching latest blocks from=338606 max=338605 to=338611 +7:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338611,"MaxBlockRetrieved":338611,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338616 PeerCount=6 +7:22AM DBG Fetching latest blocks from=338612 max=338611 to=338616 +7:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338616,"MaxBlockRetrieved":338616,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338622 PeerCount=6 +7:22AM DBG Fetching latest blocks from=338617 max=338616 to=338622 +7:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338622,"MaxBlockRetrieved":338622,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338627 PeerCount=6 +7:23AM DBG Fetching latest blocks from=338623 max=338622 to=338627 +7:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338627,"MaxBlockRetrieved":338627,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338632 PeerCount=6 +7:23AM DBG Fetching latest blocks from=338628 max=338627 to=338632 +7:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338632,"MaxBlockRetrieved":338627,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338638 PeerCount=6 +7:23AM DBG Fetching latest blocks from=338633 max=338632 to=338638 +7:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338638,"MaxBlockRetrieved":338638,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338643 PeerCount=6 +7:23AM DBG Fetching latest blocks from=338639 max=338638 to=338643 +7:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338643,"MaxBlockRetrieved":338643,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338649 PeerCount=6 +7:23AM DBG Fetching latest blocks from=338644 max=338643 to=338649 +7:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338649,"MaxBlockRetrieved":338649,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338654 PeerCount=6 +7:23AM DBG Fetching latest blocks from=338650 max=338649 to=338654 +7:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338654,"MaxBlockRetrieved":338654,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338659 PeerCount=6 +7:23AM DBG Fetching latest blocks from=338655 max=338654 to=338659 +7:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338659,"MaxBlockRetrieved":338659,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338665 PeerCount=6 +7:23AM DBG Fetching latest blocks from=338660 max=338659 to=338665 +7:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338665,"MaxBlockRetrieved":338665,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338670 PeerCount=6 +7:23AM DBG Fetching latest blocks from=338666 max=338665 to=338670 +7:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338670,"MaxBlockRetrieved":338670,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338676 PeerCount=6 +7:23AM DBG Fetching latest blocks from=338671 max=338670 to=338676 +7:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338676,"MaxBlockRetrieved":338670,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338682 PeerCount=6 +7:23AM DBG Fetching latest blocks from=338677 max=338676 to=338682 +7:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338682,"MaxBlockRetrieved":338682,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338687 PeerCount=6 +7:24AM DBG Fetching latest blocks from=338683 max=338682 to=338687 +7:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338687,"MaxBlockRetrieved":338687,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338693 PeerCount=6 +7:24AM DBG Fetching latest blocks from=338688 max=338687 to=338693 +7:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338693,"MaxBlockRetrieved":338693,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338698 PeerCount=6 +7:24AM DBG Fetching latest blocks from=338694 max=338693 to=338698 +7:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338698,"MaxBlockRetrieved":338693,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338704 PeerCount=6 +7:24AM DBG Fetching latest blocks from=338699 max=338698 to=338704 +7:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338704,"MaxBlockRetrieved":338704,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338709 PeerCount=6 +7:24AM DBG Fetching latest blocks from=338705 max=338704 to=338709 +7:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338709,"MaxBlockRetrieved":338704,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338715 PeerCount=6 +7:24AM DBG Fetching latest blocks from=338710 max=338709 to=338715 +7:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338715,"MaxBlockRetrieved":338715,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338720 PeerCount=6 +7:24AM DBG Fetching latest blocks from=338716 max=338715 to=338720 +7:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338720,"MaxBlockRetrieved":338720,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338725 PeerCount=6 +7:24AM DBG Fetching latest blocks from=338721 max=338720 to=338725 +7:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338725,"MaxBlockRetrieved":338725,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338731 PeerCount=6 +7:24AM DBG Fetching latest blocks from=338726 max=338725 to=338731 +7:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338731,"MaxBlockRetrieved":338731,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338736 PeerCount=6 +7:24AM DBG Fetching latest blocks from=338732 max=338731 to=338736 +7:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338736,"MaxBlockRetrieved":338736,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338742 PeerCount=6 +7:24AM DBG Fetching latest blocks from=338737 max=338736 to=338742 +7:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338742,"MaxBlockRetrieved":338742,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338747 PeerCount=6 +7:25AM DBG Fetching latest blocks from=338743 max=338742 to=338747 +7:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338747,"MaxBlockRetrieved":338747,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338752 PeerCount=6 +7:25AM DBG Fetching latest blocks from=338748 max=338747 to=338752 +7:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338752,"MaxBlockRetrieved":338752,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338758 PeerCount=6 +7:25AM DBG Fetching latest blocks from=338753 max=338752 to=338758 +7:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338758,"MaxBlockRetrieved":338758,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338763 PeerCount=6 +7:25AM DBG Fetching latest blocks from=338759 max=338758 to=338763 +7:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338763,"MaxBlockRetrieved":338763,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338769 PeerCount=6 +7:25AM DBG Fetching latest blocks from=338764 max=338763 to=338769 +7:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338769,"MaxBlockRetrieved":338763,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338774 PeerCount=6 +7:25AM DBG Fetching latest blocks from=338770 max=338769 to=338774 +7:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338774,"MaxBlockRetrieved":338774,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338779 PeerCount=6 +7:25AM DBG Fetching latest blocks from=338775 max=338774 to=338779 +7:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338779,"MaxBlockRetrieved":338779,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338785 PeerCount=6 +7:25AM DBG Fetching latest blocks from=338780 max=338779 to=338785 +7:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338785,"MaxBlockRetrieved":338785,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338790 PeerCount=6 +7:25AM DBG Fetching latest blocks from=338786 max=338785 to=338790 +7:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338790,"MaxBlockRetrieved":338790,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338796 PeerCount=6 +7:25AM DBG Fetching latest blocks from=338791 max=338790 to=338796 +7:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338796,"MaxBlockRetrieved":338796,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338801 PeerCount=6 +7:25AM DBG Fetching latest blocks from=338797 max=338796 to=338801 +7:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338801,"MaxBlockRetrieved":338801,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338806 PeerCount=6 +7:26AM DBG Fetching latest blocks from=338802 max=338801 to=338806 +7:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338806,"MaxBlockRetrieved":338806,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338812 PeerCount=6 +7:26AM DBG Fetching latest blocks from=338807 max=338806 to=338812 +7:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338812,"MaxBlockRetrieved":338812,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338817 PeerCount=6 +7:26AM DBG Fetching latest blocks from=338813 max=338812 to=338817 +7:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338817,"MaxBlockRetrieved":338812,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338823 PeerCount=6 +7:26AM DBG Fetching latest blocks from=338818 max=338817 to=338823 +7:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338823,"MaxBlockRetrieved":338823,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338828 PeerCount=6 +7:26AM DBG Fetching latest blocks from=338824 max=338823 to=338828 +7:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338828,"MaxBlockRetrieved":338828,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338833 PeerCount=6 +7:26AM DBG Fetching latest blocks from=338829 max=338828 to=338833 +7:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338833,"MaxBlockRetrieved":338833,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338839 PeerCount=6 +7:26AM DBG Fetching latest blocks from=338834 max=338833 to=338839 +7:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338839,"MaxBlockRetrieved":338839,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338844 PeerCount=6 +7:26AM DBG Fetching latest blocks from=338840 max=338839 to=338844 +7:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338844,"MaxBlockRetrieved":338844,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338850 PeerCount=6 +7:26AM DBG Fetching latest blocks from=338845 max=338844 to=338850 +7:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338850,"MaxBlockRetrieved":338850,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338855 PeerCount=6 +7:26AM DBG Fetching latest blocks from=338851 max=338850 to=338855 +7:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338855,"MaxBlockRetrieved":338855,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338860 PeerCount=6 +7:27AM DBG Fetching latest blocks from=338856 max=338855 to=338860 +7:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338860,"MaxBlockRetrieved":338860,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338866 PeerCount=6 +7:27AM DBG Fetching latest blocks from=338861 max=338860 to=338866 +7:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338866,"MaxBlockRetrieved":338866,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338871 PeerCount=6 +7:27AM DBG Fetching latest blocks from=338867 max=338866 to=338871 +7:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338871,"MaxBlockRetrieved":338871,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338877 PeerCount=6 +7:27AM DBG Fetching latest blocks from=338872 max=338871 to=338877 +7:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338877,"MaxBlockRetrieved":338871,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338882 PeerCount=6 +7:27AM DBG Fetching latest blocks from=338878 max=338877 to=338882 +7:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338882,"MaxBlockRetrieved":338882,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338887 PeerCount=6 +7:27AM DBG Fetching latest blocks from=338883 max=338882 to=338887 +7:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338887,"MaxBlockRetrieved":338887,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338893 PeerCount=6 +7:27AM DBG Fetching latest blocks from=338888 max=338887 to=338893 +7:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338893,"MaxBlockRetrieved":338893,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338898 PeerCount=6 +7:27AM DBG Fetching latest blocks from=338894 max=338893 to=338898 +7:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338898,"MaxBlockRetrieved":338898,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338904 PeerCount=6 +7:27AM DBG Fetching latest blocks from=338899 max=338898 to=338904 +7:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338904,"MaxBlockRetrieved":338904,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338909 PeerCount=6 +7:27AM DBG Fetching latest blocks from=338905 max=338904 to=338909 +7:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338909,"MaxBlockRetrieved":338909,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338914 PeerCount=6 +7:27AM DBG Fetching latest blocks from=338910 max=338909 to=338914 +7:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338914,"MaxBlockRetrieved":338914,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338920 PeerCount=6 +7:28AM DBG Fetching latest blocks from=338915 max=338914 to=338920 +7:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338920,"MaxBlockRetrieved":338920,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338925 PeerCount=6 +7:28AM DBG Fetching latest blocks from=338921 max=338920 to=338925 +7:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338925,"MaxBlockRetrieved":338925,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338931 PeerCount=6 +7:28AM DBG Fetching latest blocks from=338926 max=338925 to=338931 +7:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338931,"MaxBlockRetrieved":338931,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338936 PeerCount=6 +7:28AM DBG Fetching latest blocks from=338932 max=338931 to=338936 +7:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338936,"MaxBlockRetrieved":338931,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338941 PeerCount=6 +7:28AM DBG Fetching latest blocks from=338937 max=338936 to=338941 +7:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338941,"MaxBlockRetrieved":338941,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338947 PeerCount=6 +7:28AM DBG Fetching latest blocks from=338942 max=338941 to=338947 +7:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338947,"MaxBlockRetrieved":338947,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338952 PeerCount=6 +7:28AM DBG Fetching latest blocks from=338948 max=338947 to=338952 +7:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338952,"MaxBlockRetrieved":338952,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338958 PeerCount=6 +7:28AM DBG Fetching latest blocks from=338953 max=338952 to=338958 +7:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338958,"MaxBlockRetrieved":338958,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338963 PeerCount=6 +7:28AM DBG Fetching latest blocks from=338959 max=338958 to=338963 +7:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338963,"MaxBlockRetrieved":338963,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338968 PeerCount=6 +7:28AM DBG Fetching latest blocks from=338964 max=338963 to=338968 +7:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338968,"MaxBlockRetrieved":338968,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338974 PeerCount=6 +7:28AM DBG Fetching latest blocks from=338969 max=338968 to=338974 +7:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338974,"MaxBlockRetrieved":338974,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338979 PeerCount=6 +7:29AM DBG Fetching latest blocks from=338975 max=338974 to=338979 +7:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338979,"MaxBlockRetrieved":338979,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338984 PeerCount=6 +7:29AM DBG Fetching latest blocks from=338980 max=338979 to=338984 +7:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338984,"MaxBlockRetrieved":338984,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338990 PeerCount=6 +7:29AM DBG Fetching latest blocks from=338985 max=338984 to=338990 +7:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338990,"MaxBlockRetrieved":338990,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=338995 PeerCount=6 +7:29AM DBG Fetching latest blocks from=338991 max=338990 to=338995 +7:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":338995,"MaxBlockRetrieved":338995,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339001 PeerCount=6 +7:29AM DBG Fetching latest blocks from=338996 max=338995 to=339001 +7:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339001,"MaxBlockRetrieved":339001,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339006 PeerCount=6 +7:29AM DBG Fetching latest blocks from=339002 max=339001 to=339006 +7:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339006,"MaxBlockRetrieved":339001,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339011 PeerCount=6 +7:29AM DBG Fetching latest blocks from=339007 max=339006 to=339011 +7:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339011,"MaxBlockRetrieved":339011,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339017 PeerCount=6 +7:29AM DBG Fetching latest blocks from=339012 max=339011 to=339017 +7:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339017,"MaxBlockRetrieved":339017,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339022 PeerCount=6 +7:29AM DBG Fetching latest blocks from=339018 max=339017 to=339022 +7:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339022,"MaxBlockRetrieved":339022,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339028 PeerCount=6 +7:29AM DBG Fetching latest blocks from=339023 max=339022 to=339028 +7:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339028,"MaxBlockRetrieved":339028,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339033 PeerCount=6 +7:29AM DBG Fetching latest blocks from=339029 max=339028 to=339033 +7:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339033,"MaxBlockRetrieved":339033,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339038 PeerCount=6 +7:30AM DBG Fetching latest blocks from=339034 max=339033 to=339038 +7:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339038,"MaxBlockRetrieved":339038,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339044 PeerCount=6 +7:30AM DBG Fetching latest blocks from=339039 max=339038 to=339044 +7:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339044,"MaxBlockRetrieved":339044,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339049 PeerCount=6 +7:30AM DBG Fetching latest blocks from=339045 max=339044 to=339049 +7:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339049,"MaxBlockRetrieved":339049,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339055 PeerCount=6 +7:30AM DBG Fetching latest blocks from=339050 max=339049 to=339055 +7:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339055,"MaxBlockRetrieved":339049,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339060 PeerCount=6 +7:30AM DBG Fetching latest blocks from=339056 max=339055 to=339060 +7:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339060,"MaxBlockRetrieved":339060,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339065 PeerCount=6 +7:30AM DBG Fetching latest blocks from=339061 max=339060 to=339065 +7:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339065,"MaxBlockRetrieved":339060,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339071 PeerCount=6 +7:30AM DBG Fetching latest blocks from=339066 max=339065 to=339071 +7:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339071,"MaxBlockRetrieved":339071,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339076 PeerCount=6 +7:30AM DBG Fetching latest blocks from=339072 max=339071 to=339076 +7:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339076,"MaxBlockRetrieved":339076,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339082 PeerCount=6 +7:30AM DBG Fetching latest blocks from=339077 max=339076 to=339082 +7:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339082,"MaxBlockRetrieved":339082,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339087 PeerCount=6 +7:30AM DBG Fetching latest blocks from=339083 max=339082 to=339087 +7:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339087,"MaxBlockRetrieved":339087,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339092 PeerCount=6 +7:30AM DBG Fetching latest blocks from=339088 max=339087 to=339092 +7:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339092,"MaxBlockRetrieved":339092,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339098 PeerCount=6 +7:31AM DBG Fetching latest blocks from=339093 max=339092 to=339098 +7:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339098,"MaxBlockRetrieved":339098,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339103 PeerCount=6 +7:31AM DBG Fetching latest blocks from=339099 max=339098 to=339103 +7:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339103,"MaxBlockRetrieved":339103,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339109 PeerCount=6 +7:31AM DBG Fetching latest blocks from=339104 max=339103 to=339109 +7:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339109,"MaxBlockRetrieved":339109,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339114 PeerCount=6 +7:31AM DBG Fetching latest blocks from=339110 max=339109 to=339114 +7:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339114,"MaxBlockRetrieved":339109,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339119 PeerCount=6 +7:31AM DBG Fetching latest blocks from=339115 max=339114 to=339119 +7:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339119,"MaxBlockRetrieved":339119,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339125 PeerCount=6 +7:31AM DBG Fetching latest blocks from=339120 max=339119 to=339125 +7:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339125,"MaxBlockRetrieved":339119,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339130 PeerCount=6 +7:31AM DBG Fetching latest blocks from=339126 max=339125 to=339130 +7:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339130,"MaxBlockRetrieved":339130,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339136 PeerCount=6 +7:31AM DBG Fetching latest blocks from=339131 max=339130 to=339136 +7:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339136,"MaxBlockRetrieved":339136,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339141 PeerCount=6 +7:31AM DBG Fetching latest blocks from=339137 max=339136 to=339141 +7:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339141,"MaxBlockRetrieved":339141,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339146 PeerCount=6 +7:31AM DBG Fetching latest blocks from=339142 max=339141 to=339146 +7:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339146,"MaxBlockRetrieved":339146,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339152 PeerCount=6 +7:31AM DBG Fetching latest blocks from=339147 max=339146 to=339152 +7:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339152,"MaxBlockRetrieved":339152,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339157 PeerCount=6 +7:32AM DBG Fetching latest blocks from=339153 max=339152 to=339157 +7:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339157,"MaxBlockRetrieved":339157,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339163 PeerCount=6 +7:32AM DBG Fetching latest blocks from=339158 max=339157 to=339163 +7:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339163,"MaxBlockRetrieved":339157,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339168 PeerCount=6 +7:32AM DBG Fetching latest blocks from=339164 max=339163 to=339168 +7:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339168,"MaxBlockRetrieved":339168,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339174 PeerCount=6 +7:32AM DBG Fetching latest blocks from=339169 max=339168 to=339174 +7:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339174,"MaxBlockRetrieved":339174,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339179 PeerCount=6 +7:32AM DBG Fetching latest blocks from=339175 max=339174 to=339179 +7:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339179,"MaxBlockRetrieved":339179,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339184 PeerCount=6 +7:32AM DBG Fetching latest blocks from=339180 max=339179 to=339184 +7:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339184,"MaxBlockRetrieved":339184,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339190 PeerCount=6 +7:32AM DBG Fetching latest blocks from=339185 max=339184 to=339190 +7:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339190,"MaxBlockRetrieved":339190,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339195 PeerCount=6 +7:32AM DBG Fetching latest blocks from=339191 max=339190 to=339195 +7:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339195,"MaxBlockRetrieved":339195,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339201 PeerCount=6 +7:32AM DBG Fetching latest blocks from=339196 max=339195 to=339201 +7:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339201,"MaxBlockRetrieved":339201,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339206 PeerCount=6 +7:32AM DBG Fetching latest blocks from=339202 max=339201 to=339206 +7:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339206,"MaxBlockRetrieved":339206,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339211 PeerCount=6 +7:33AM DBG Fetching latest blocks from=339207 max=339206 to=339211 +7:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339211,"MaxBlockRetrieved":339211,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339217 PeerCount=6 +7:33AM DBG Fetching latest blocks from=339212 max=339211 to=339217 +7:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339217,"MaxBlockRetrieved":339217,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339222 PeerCount=6 +7:33AM DBG Fetching latest blocks from=339218 max=339217 to=339222 +7:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339222,"MaxBlockRetrieved":339217,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339228 PeerCount=6 +7:33AM DBG Fetching latest blocks from=339223 max=339222 to=339228 +7:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339228,"MaxBlockRetrieved":339228,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339233 PeerCount=6 +7:33AM DBG Fetching latest blocks from=339229 max=339228 to=339233 +7:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339233,"MaxBlockRetrieved":339233,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339238 PeerCount=6 +7:33AM DBG Fetching latest blocks from=339234 max=339233 to=339238 +7:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339238,"MaxBlockRetrieved":339238,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339244 PeerCount=6 +7:33AM DBG Fetching latest blocks from=339239 max=339238 to=339244 +7:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339244,"MaxBlockRetrieved":339244,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339249 PeerCount=6 +7:33AM DBG Fetching latest blocks from=339245 max=339244 to=339249 +7:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339249,"MaxBlockRetrieved":339244,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339255 PeerCount=6 +7:33AM DBG Fetching latest blocks from=339250 max=339249 to=339255 +7:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339255,"MaxBlockRetrieved":339255,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339260 PeerCount=6 +7:33AM DBG Fetching latest blocks from=339256 max=339255 to=339260 +7:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339260,"MaxBlockRetrieved":339260,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339266 PeerCount=6 +7:33AM DBG Fetching latest blocks from=339261 max=339260 to=339266 +7:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339266,"MaxBlockRetrieved":339266,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339271 PeerCount=6 +7:34AM DBG Fetching latest blocks from=339267 max=339266 to=339271 +7:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339271,"MaxBlockRetrieved":339271,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339276 PeerCount=6 +7:34AM DBG Fetching latest blocks from=339272 max=339271 to=339276 +7:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339276,"MaxBlockRetrieved":339276,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339282 PeerCount=6 +7:34AM DBG Fetching latest blocks from=339277 max=339276 to=339282 +7:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339282,"MaxBlockRetrieved":339282,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339287 PeerCount=6 +7:34AM DBG Fetching latest blocks from=339283 max=339282 to=339287 +7:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339287,"MaxBlockRetrieved":339287,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339293 PeerCount=6 +7:34AM DBG Fetching latest blocks from=339288 max=339287 to=339293 +7:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339293,"MaxBlockRetrieved":339293,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339298 PeerCount=6 +7:34AM DBG Fetching latest blocks from=339294 max=339293 to=339298 +7:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339298,"MaxBlockRetrieved":339293,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339303 PeerCount=6 +7:34AM DBG Fetching latest blocks from=339299 max=339298 to=339303 +7:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339303,"MaxBlockRetrieved":339303,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339309 PeerCount=6 +7:34AM DBG Fetching latest blocks from=339304 max=339303 to=339309 +7:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339309,"MaxBlockRetrieved":339303,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339314 PeerCount=6 +7:34AM DBG Fetching latest blocks from=339310 max=339309 to=339314 +7:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339314,"MaxBlockRetrieved":339314,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339320 PeerCount=6 +7:34AM DBG Fetching latest blocks from=339315 max=339314 to=339320 +7:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339320,"MaxBlockRetrieved":339320,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339325 PeerCount=6 +7:34AM DBG Fetching latest blocks from=339321 max=339320 to=339325 +7:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339325,"MaxBlockRetrieved":339325,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339330 PeerCount=6 +7:35AM DBG Fetching latest blocks from=339326 max=339325 to=339330 +7:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339330,"MaxBlockRetrieved":339330,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339336 PeerCount=6 +7:35AM DBG Fetching latest blocks from=339331 max=339330 to=339336 +7:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339336,"MaxBlockRetrieved":339336,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339341 PeerCount=6 +7:35AM DBG Fetching latest blocks from=339337 max=339336 to=339341 +7:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339341,"MaxBlockRetrieved":339341,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339347 PeerCount=6 +7:35AM DBG Fetching latest blocks from=339342 max=339341 to=339347 +7:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339347,"MaxBlockRetrieved":339347,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339352 PeerCount=6 +7:35AM DBG Fetching latest blocks from=339348 max=339347 to=339352 +7:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339352,"MaxBlockRetrieved":339352,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339357 PeerCount=6 +7:35AM DBG Fetching latest blocks from=339353 max=339352 to=339357 +7:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339357,"MaxBlockRetrieved":339357,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339363 PeerCount=6 +7:35AM DBG Fetching latest blocks from=339358 max=339357 to=339363 +7:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339363,"MaxBlockRetrieved":339363,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339368 PeerCount=6 +7:35AM DBG Fetching latest blocks from=339364 max=339363 to=339368 +7:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339368,"MaxBlockRetrieved":339363,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339374 PeerCount=6 +7:35AM DBG Fetching latest blocks from=339369 max=339368 to=339374 +7:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339374,"MaxBlockRetrieved":339374,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339379 PeerCount=6 +7:35AM DBG Fetching latest blocks from=339375 max=339374 to=339379 +7:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339379,"MaxBlockRetrieved":339379,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339385 PeerCount=6 +7:35AM DBG Fetching latest blocks from=339380 max=339379 to=339385 +7:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339385,"MaxBlockRetrieved":339385,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339390 PeerCount=6 +7:36AM DBG Fetching latest blocks from=339386 max=339385 to=339390 +7:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339390,"MaxBlockRetrieved":339390,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339396 PeerCount=6 +7:36AM DBG Fetching latest blocks from=339391 max=339390 to=339396 +7:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339396,"MaxBlockRetrieved":339396,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339401 PeerCount=6 +7:36AM DBG Fetching latest blocks from=339397 max=339396 to=339401 +7:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339401,"MaxBlockRetrieved":339401,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339407 PeerCount=6 +7:36AM DBG Fetching latest blocks from=339402 max=339401 to=339407 +7:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339407,"MaxBlockRetrieved":339401,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339413 PeerCount=6 +7:36AM DBG Fetching latest blocks from=339408 max=339407 to=339413 +7:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339413,"MaxBlockRetrieved":339413,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339418 PeerCount=6 +7:36AM DBG Fetching latest blocks from=339414 max=339413 to=339418 +7:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339418,"MaxBlockRetrieved":339418,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339423 PeerCount=6 +7:36AM DBG Fetching latest blocks from=339419 max=339418 to=339423 +7:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339423,"MaxBlockRetrieved":339423,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339429 PeerCount=6 +7:36AM DBG Fetching latest blocks from=339424 max=339423 to=339429 +7:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339429,"MaxBlockRetrieved":339429,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339434 PeerCount=6 +7:36AM DBG Fetching latest blocks from=339430 max=339429 to=339434 +7:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339434,"MaxBlockRetrieved":339434,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339439 PeerCount=6 +7:36AM DBG Fetching latest blocks from=339435 max=339434 to=339439 +7:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339439,"MaxBlockRetrieved":339439,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339445 PeerCount=6 +7:37AM DBG Fetching latest blocks from=339440 max=339439 to=339445 +7:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339445,"MaxBlockRetrieved":339445,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339450 PeerCount=6 +7:37AM DBG Fetching latest blocks from=339446 max=339445 to=339450 +7:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339450,"MaxBlockRetrieved":339450,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339456 PeerCount=6 +7:37AM DBG Fetching latest blocks from=339451 max=339450 to=339456 +7:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339456,"MaxBlockRetrieved":339456,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339461 PeerCount=6 +7:37AM DBG Fetching latest blocks from=339457 max=339456 to=339461 +7:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339461,"MaxBlockRetrieved":339461,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339466 PeerCount=6 +7:37AM DBG Fetching latest blocks from=339462 max=339461 to=339466 +7:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339466,"MaxBlockRetrieved":339461,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339472 PeerCount=6 +7:37AM DBG Fetching latest blocks from=339467 max=339466 to=339472 +7:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339472,"MaxBlockRetrieved":339472,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339477 PeerCount=6 +7:37AM DBG Fetching latest blocks from=339473 max=339472 to=339477 +7:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339477,"MaxBlockRetrieved":339472,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339483 PeerCount=6 +7:37AM DBG Fetching latest blocks from=339478 max=339477 to=339483 +7:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339483,"MaxBlockRetrieved":339483,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339488 PeerCount=6 +7:37AM DBG Fetching latest blocks from=339484 max=339483 to=339488 +7:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339488,"MaxBlockRetrieved":339488,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339493 PeerCount=6 +7:37AM DBG Fetching latest blocks from=339489 max=339488 to=339493 +7:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339493,"MaxBlockRetrieved":339493,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339499 PeerCount=6 +7:37AM DBG Fetching latest blocks from=339494 max=339493 to=339499 +7:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339499,"MaxBlockRetrieved":339499,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339504 PeerCount=6 +7:38AM DBG Fetching latest blocks from=339500 max=339499 to=339504 +7:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339504,"MaxBlockRetrieved":339504,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339510 PeerCount=6 +7:38AM DBG Fetching latest blocks from=339505 max=339504 to=339510 +7:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339510,"MaxBlockRetrieved":339510,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339515 PeerCount=6 +7:38AM DBG Fetching latest blocks from=339511 max=339510 to=339515 +7:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339515,"MaxBlockRetrieved":339515,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339520 PeerCount=6 +7:38AM DBG Fetching latest blocks from=339516 max=339515 to=339520 +7:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339520,"MaxBlockRetrieved":339520,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339526 PeerCount=6 +7:38AM DBG Fetching latest blocks from=339521 max=339520 to=339526 +7:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339526,"MaxBlockRetrieved":339526,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339531 PeerCount=6 +7:38AM DBG Fetching latest blocks from=339527 max=339526 to=339531 +7:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339531,"MaxBlockRetrieved":339531,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339536 PeerCount=6 +7:38AM DBG Fetching latest blocks from=339532 max=339531 to=339536 +7:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339536,"MaxBlockRetrieved":339531,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339542 PeerCount=6 +7:38AM DBG Fetching latest blocks from=339537 max=339536 to=339542 +7:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339542,"MaxBlockRetrieved":339542,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339547 PeerCount=6 +7:38AM DBG Fetching latest blocks from=339543 max=339542 to=339547 +7:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339547,"MaxBlockRetrieved":339547,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339553 PeerCount=6 +7:38AM DBG Fetching latest blocks from=339548 max=339547 to=339553 +7:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339553,"MaxBlockRetrieved":339553,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339558 PeerCount=6 +7:38AM DBG Fetching latest blocks from=339554 max=339553 to=339558 +7:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339558,"MaxBlockRetrieved":339558,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339563 PeerCount=6 +7:39AM DBG Fetching latest blocks from=339559 max=339558 to=339563 +7:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339563,"MaxBlockRetrieved":339563,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339569 PeerCount=6 +7:39AM DBG Fetching latest blocks from=339564 max=339563 to=339569 +7:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339569,"MaxBlockRetrieved":339569,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339574 PeerCount=6 +7:39AM DBG Fetching latest blocks from=339570 max=339569 to=339574 +7:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339574,"MaxBlockRetrieved":339574,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339580 PeerCount=6 +7:39AM DBG Fetching latest blocks from=339575 max=339574 to=339580 +7:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339580,"MaxBlockRetrieved":339580,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339585 PeerCount=6 +7:39AM DBG Fetching latest blocks from=339581 max=339580 to=339585 +7:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339585,"MaxBlockRetrieved":339585,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339591 PeerCount=6 +7:39AM DBG Fetching latest blocks from=339586 max=339585 to=339591 +7:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339591,"MaxBlockRetrieved":339591,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339596 PeerCount=6 +7:39AM DBG Fetching latest blocks from=339592 max=339591 to=339596 +7:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339596,"MaxBlockRetrieved":339596,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339601 PeerCount=6 +7:39AM DBG Fetching latest blocks from=339597 max=339596 to=339601 +7:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339601,"MaxBlockRetrieved":339601,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339607 PeerCount=6 +7:39AM DBG Fetching latest blocks from=339602 max=339601 to=339607 +7:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339607,"MaxBlockRetrieved":339607,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339612 PeerCount=6 +7:39AM DBG Fetching latest blocks from=339608 max=339607 to=339612 +7:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339612,"MaxBlockRetrieved":339612,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339618 PeerCount=6 +7:39AM DBG Fetching latest blocks from=339613 max=339612 to=339618 +7:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339618,"MaxBlockRetrieved":339618,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339623 PeerCount=6 +7:40AM DBG Fetching latest blocks from=339619 max=339618 to=339623 +7:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339623,"MaxBlockRetrieved":339623,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339628 PeerCount=6 +7:40AM DBG Fetching latest blocks from=339624 max=339623 to=339628 +7:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339628,"MaxBlockRetrieved":339628,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339634 PeerCount=6 +7:40AM DBG Fetching latest blocks from=339629 max=339628 to=339634 +7:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339634,"MaxBlockRetrieved":339634,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339639 PeerCount=6 +7:40AM DBG Fetching latest blocks from=339635 max=339634 to=339639 +7:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339639,"MaxBlockRetrieved":339639,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339645 PeerCount=6 +7:40AM DBG Fetching latest blocks from=339640 max=339639 to=339645 +7:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339645,"MaxBlockRetrieved":339645,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339651 PeerCount=6 +7:40AM DBG Fetching latest blocks from=339646 max=339645 to=339651 +7:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339651,"MaxBlockRetrieved":339651,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339656 PeerCount=6 +7:40AM DBG Fetching latest blocks from=339652 max=339651 to=339656 +7:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339656,"MaxBlockRetrieved":339651,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339662 PeerCount=6 +7:40AM DBG Fetching latest blocks from=339657 max=339656 to=339662 +7:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339662,"MaxBlockRetrieved":339662,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339667 PeerCount=6 +7:40AM DBG Fetching latest blocks from=339663 max=339662 to=339667 +7:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339667,"MaxBlockRetrieved":339667,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339673 PeerCount=6 +7:40AM DBG Fetching latest blocks from=339668 max=339667 to=339673 +7:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339673,"MaxBlockRetrieved":339667,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339678 PeerCount=6 +7:41AM DBG Fetching latest blocks from=339674 max=339673 to=339678 +7:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339678,"MaxBlockRetrieved":339678,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339684 PeerCount=6 +7:41AM DBG Fetching latest blocks from=339679 max=339678 to=339684 +7:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339684,"MaxBlockRetrieved":339684,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339689 PeerCount=6 +7:41AM DBG Fetching latest blocks from=339685 max=339684 to=339689 +7:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339689,"MaxBlockRetrieved":339689,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339695 PeerCount=6 +7:41AM DBG Fetching latest blocks from=339690 max=339689 to=339695 +7:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339695,"MaxBlockRetrieved":339695,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339700 PeerCount=6 +7:41AM DBG Fetching latest blocks from=339696 max=339695 to=339700 +7:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339700,"MaxBlockRetrieved":339700,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339705 PeerCount=6 +7:41AM DBG Fetching latest blocks from=339701 max=339700 to=339705 +7:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339705,"MaxBlockRetrieved":339705,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339711 PeerCount=6 +7:41AM DBG Fetching latest blocks from=339706 max=339705 to=339711 +7:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339711,"MaxBlockRetrieved":339705,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339716 PeerCount=6 +7:41AM DBG Fetching latest blocks from=339712 max=339711 to=339716 +7:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339716,"MaxBlockRetrieved":339716,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339722 PeerCount=6 +7:41AM DBG Fetching latest blocks from=339717 max=339716 to=339722 +7:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339722,"MaxBlockRetrieved":339722,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339727 PeerCount=6 +7:41AM DBG Fetching latest blocks from=339723 max=339722 to=339727 +7:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339727,"MaxBlockRetrieved":339727,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339732 PeerCount=6 +7:41AM DBG Fetching latest blocks from=339728 max=339727 to=339732 +7:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339732,"MaxBlockRetrieved":339732,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339738 PeerCount=6 +7:42AM DBG Fetching latest blocks from=339733 max=339732 to=339738 +7:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339738,"MaxBlockRetrieved":339738,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339743 PeerCount=6 +7:42AM DBG Fetching latest blocks from=339739 max=339738 to=339743 +7:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339743,"MaxBlockRetrieved":339743,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339748 PeerCount=6 +7:42AM DBG Fetching latest blocks from=339744 max=339743 to=339748 +7:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339748,"MaxBlockRetrieved":339748,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339754 PeerCount=6 +7:42AM DBG Fetching latest blocks from=339749 max=339748 to=339754 +7:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339754,"MaxBlockRetrieved":339754,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339759 PeerCount=6 +7:42AM DBG Fetching latest blocks from=339755 max=339754 to=339759 +7:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339759,"MaxBlockRetrieved":339759,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339765 PeerCount=6 +7:42AM DBG Fetching latest blocks from=339760 max=339759 to=339765 +7:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339765,"MaxBlockRetrieved":339765,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339770 PeerCount=6 +7:42AM DBG Fetching latest blocks from=339766 max=339765 to=339770 +7:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339770,"MaxBlockRetrieved":339770,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339775 PeerCount=6 +7:42AM DBG Fetching latest blocks from=339771 max=339770 to=339775 +7:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339775,"MaxBlockRetrieved":339775,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339781 PeerCount=6 +7:42AM DBG Fetching latest blocks from=339776 max=339775 to=339781 +7:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339781,"MaxBlockRetrieved":339775,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339786 PeerCount=6 +7:42AM DBG Fetching latest blocks from=339782 max=339781 to=339786 +7:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339786,"MaxBlockRetrieved":339786,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339792 PeerCount=6 +7:42AM DBG Fetching latest blocks from=339787 max=339786 to=339792 +7:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339792,"MaxBlockRetrieved":339786,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339798 PeerCount=6 +7:43AM DBG Fetching latest blocks from=339793 max=339792 to=339798 +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339798,"MaxBlockRetrieved":339798,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM TRC Unknown ui event id= +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339798,"MaxBlockRetrieved":339798,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM TRC Unknown ui event id= +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339798,"MaxBlockRetrieved":339798,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339798,"MaxBlockRetrieved":339798,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339798,"MaxBlockRetrieved":339798,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339798,"MaxBlockRetrieved":339798,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339803 PeerCount=6 +7:43AM DBG Fetching latest blocks from=339799 max=339798 to=339803 +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339803,"MaxBlockRetrieved":339803,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339809 PeerCount=6 +7:43AM DBG Fetching latest blocks from=339804 max=339803 to=339809 +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339809,"MaxBlockRetrieved":339809,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339814 PeerCount=6 +7:43AM DBG Fetching latest blocks from=339810 max=339809 to=339814 +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339814,"MaxBlockRetrieved":339814,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339820 PeerCount=6 +7:43AM DBG Fetching latest blocks from=339815 max=339814 to=339820 +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339820,"MaxBlockRetrieved":339820,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339825 PeerCount=6 +7:43AM DBG Fetching latest blocks from=339821 max=339820 to=339825 +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339825,"MaxBlockRetrieved":339825,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339830 PeerCount=6 +7:43AM DBG Fetching latest blocks from=339826 max=339825 to=339830 +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339830,"MaxBlockRetrieved":339830,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339836 PeerCount=6 +7:43AM DBG Fetching latest blocks from=339831 max=339830 to=339836 +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339836,"MaxBlockRetrieved":339836,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339841 PeerCount=6 +7:43AM DBG Fetching latest blocks from=339837 max=339836 to=339841 +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339841,"MaxBlockRetrieved":339836,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339847 PeerCount=6 +7:43AM DBG Fetching latest blocks from=339842 max=339841 to=339847 +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339847,"MaxBlockRetrieved":339847,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339852 PeerCount=6 +7:43AM DBG Fetching latest blocks from=339848 max=339847 to=339852 +7:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339852,"MaxBlockRetrieved":339852,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339857 PeerCount=6 +7:44AM DBG Fetching latest blocks from=339853 max=339852 to=339857 +7:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339857,"MaxBlockRetrieved":339857,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339863 PeerCount=6 +7:44AM DBG Fetching latest blocks from=339858 max=339857 to=339863 +7:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339863,"MaxBlockRetrieved":339863,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339868 PeerCount=6 +7:44AM DBG Fetching latest blocks from=339864 max=339863 to=339868 +7:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339868,"MaxBlockRetrieved":339868,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339874 PeerCount=6 +7:44AM DBG Fetching latest blocks from=339869 max=339868 to=339874 +7:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339874,"MaxBlockRetrieved":339874,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339879 PeerCount=6 +7:44AM DBG Fetching latest blocks from=339875 max=339874 to=339879 +7:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339879,"MaxBlockRetrieved":339879,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339884 PeerCount=6 +7:44AM DBG Fetching latest blocks from=339880 max=339879 to=339884 +7:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339884,"MaxBlockRetrieved":339884,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339890 PeerCount=6 +7:44AM DBG Fetching latest blocks from=339885 max=339884 to=339890 +7:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339890,"MaxBlockRetrieved":339890,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339895 PeerCount=6 +7:44AM DBG Fetching latest blocks from=339891 max=339890 to=339895 +7:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339895,"MaxBlockRetrieved":339895,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339900 PeerCount=6 +7:44AM DBG Fetching latest blocks from=339896 max=339895 to=339900 +7:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339900,"MaxBlockRetrieved":339895,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339906 PeerCount=6 +7:44AM DBG Fetching latest blocks from=339901 max=339900 to=339906 +7:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339906,"MaxBlockRetrieved":339906,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339911 PeerCount=6 +7:44AM DBG Fetching latest blocks from=339907 max=339906 to=339911 +7:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339911,"MaxBlockRetrieved":339911,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339917 PeerCount=6 +7:45AM DBG Fetching latest blocks from=339912 max=339911 to=339917 +7:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339917,"MaxBlockRetrieved":339917,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339922 PeerCount=6 +7:45AM DBG Fetching latest blocks from=339918 max=339917 to=339922 +7:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339922,"MaxBlockRetrieved":339922,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339927 PeerCount=6 +7:45AM DBG Fetching latest blocks from=339923 max=339922 to=339927 +7:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339927,"MaxBlockRetrieved":339927,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339933 PeerCount=6 +7:45AM DBG Fetching latest blocks from=339928 max=339927 to=339933 +7:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339933,"MaxBlockRetrieved":339933,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339938 PeerCount=6 +7:45AM DBG Fetching latest blocks from=339934 max=339933 to=339938 +7:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339938,"MaxBlockRetrieved":339938,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339944 PeerCount=6 +7:45AM DBG Fetching latest blocks from=339939 max=339938 to=339944 +7:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339944,"MaxBlockRetrieved":339944,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339949 PeerCount=6 +7:45AM DBG Fetching latest blocks from=339945 max=339944 to=339949 +7:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339949,"MaxBlockRetrieved":339949,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339955 PeerCount=6 +7:45AM DBG Fetching latest blocks from=339950 max=339949 to=339955 +7:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339955,"MaxBlockRetrieved":339955,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339960 PeerCount=6 +7:45AM DBG Fetching latest blocks from=339956 max=339955 to=339960 +7:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339960,"MaxBlockRetrieved":339960,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339966 PeerCount=6 +7:45AM DBG Fetching latest blocks from=339961 max=339960 to=339966 +7:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339966,"MaxBlockRetrieved":339966,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339971 PeerCount=6 +7:46AM DBG Fetching latest blocks from=339967 max=339966 to=339971 +7:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339971,"MaxBlockRetrieved":339971,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339976 PeerCount=6 +7:46AM DBG Fetching latest blocks from=339972 max=339971 to=339976 +7:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339976,"MaxBlockRetrieved":339976,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339982 PeerCount=6 +7:46AM DBG Fetching latest blocks from=339977 max=339976 to=339982 +7:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339982,"MaxBlockRetrieved":339982,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339987 PeerCount=6 +7:46AM DBG Fetching latest blocks from=339983 max=339982 to=339987 +7:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339987,"MaxBlockRetrieved":339987,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339993 PeerCount=6 +7:46AM DBG Fetching latest blocks from=339988 max=339987 to=339993 +7:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339993,"MaxBlockRetrieved":339993,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=339998 PeerCount=6 +7:46AM DBG Fetching latest blocks from=339994 max=339993 to=339998 +7:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":339998,"MaxBlockRetrieved":339998,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340004 PeerCount=6 +7:46AM DBG Fetching latest blocks from=339999 max=339998 to=340004 +7:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340004,"MaxBlockRetrieved":339998,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340009 PeerCount=6 +7:46AM DBG Fetching latest blocks from=340005 max=340004 to=340009 +7:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340009,"MaxBlockRetrieved":340009,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340014 PeerCount=6 +7:46AM DBG Fetching latest blocks from=340010 max=340009 to=340014 +7:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340014,"MaxBlockRetrieved":340009,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340020 PeerCount=6 +7:46AM DBG Fetching latest blocks from=340015 max=340014 to=340020 +7:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340020,"MaxBlockRetrieved":340020,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340025 PeerCount=6 +7:46AM DBG Fetching latest blocks from=340021 max=340020 to=340025 +7:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340025,"MaxBlockRetrieved":340025,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340031 PeerCount=6 +7:47AM DBG Fetching latest blocks from=340026 max=340025 to=340031 +7:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340031,"MaxBlockRetrieved":340031,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340036 PeerCount=6 +7:47AM DBG Fetching latest blocks from=340032 max=340031 to=340036 +7:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340036,"MaxBlockRetrieved":340036,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340041 PeerCount=6 +7:47AM DBG Fetching latest blocks from=340037 max=340036 to=340041 +7:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340041,"MaxBlockRetrieved":340041,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340047 PeerCount=6 +7:47AM DBG Fetching latest blocks from=340042 max=340041 to=340047 +7:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340047,"MaxBlockRetrieved":340047,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340052 PeerCount=6 +7:47AM DBG Fetching latest blocks from=340048 max=340047 to=340052 +7:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340052,"MaxBlockRetrieved":340052,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340058 PeerCount=6 +7:47AM DBG Fetching latest blocks from=340053 max=340052 to=340058 +7:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340058,"MaxBlockRetrieved":340058,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340063 PeerCount=6 +7:47AM DBG Fetching latest blocks from=340059 max=340058 to=340063 +7:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340063,"MaxBlockRetrieved":340063,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340068 PeerCount=6 +7:47AM DBG Fetching latest blocks from=340064 max=340063 to=340068 +7:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340068,"MaxBlockRetrieved":340068,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340074 PeerCount=6 +7:47AM DBG Fetching latest blocks from=340069 max=340068 to=340074 +7:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340074,"MaxBlockRetrieved":340068,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340079 PeerCount=6 +7:47AM DBG Fetching latest blocks from=340075 max=340074 to=340079 +7:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340079,"MaxBlockRetrieved":340079,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340084 PeerCount=6 +7:47AM DBG Fetching latest blocks from=340080 max=340079 to=340084 +7:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340084,"MaxBlockRetrieved":340079,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340090 PeerCount=6 +7:48AM DBG Fetching latest blocks from=340085 max=340084 to=340090 +7:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340090,"MaxBlockRetrieved":340090,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340095 PeerCount=6 +7:48AM DBG Fetching latest blocks from=340091 max=340090 to=340095 +7:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340095,"MaxBlockRetrieved":340095,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340101 PeerCount=6 +7:48AM DBG Fetching latest blocks from=340096 max=340095 to=340101 +7:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340101,"MaxBlockRetrieved":340101,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340106 PeerCount=6 +7:48AM DBG Fetching latest blocks from=340102 max=340101 to=340106 +7:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340106,"MaxBlockRetrieved":340106,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340111 PeerCount=6 +7:48AM DBG Fetching latest blocks from=340107 max=340106 to=340111 +7:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340111,"MaxBlockRetrieved":340111,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340117 PeerCount=6 +7:48AM DBG Fetching latest blocks from=340112 max=340111 to=340117 +7:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340117,"MaxBlockRetrieved":340117,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340122 PeerCount=6 +7:48AM DBG Fetching latest blocks from=340118 max=340117 to=340122 +7:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340122,"MaxBlockRetrieved":340122,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340128 PeerCount=6 +7:48AM DBG Fetching latest blocks from=340123 max=340122 to=340128 +7:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340128,"MaxBlockRetrieved":340128,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340133 PeerCount=6 +7:48AM DBG Fetching latest blocks from=340129 max=340128 to=340133 +7:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340133,"MaxBlockRetrieved":340133,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340138 PeerCount=6 +7:48AM DBG Fetching latest blocks from=340134 max=340133 to=340138 +7:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340138,"MaxBlockRetrieved":340138,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340144 PeerCount=6 +7:48AM DBG Fetching latest blocks from=340139 max=340138 to=340144 +7:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340144,"MaxBlockRetrieved":340144,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340149 PeerCount=6 +7:49AM DBG Fetching latest blocks from=340145 max=340144 to=340149 +7:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340149,"MaxBlockRetrieved":340149,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340154 PeerCount=6 +7:49AM DBG Fetching latest blocks from=340150 max=340149 to=340154 +7:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340154,"MaxBlockRetrieved":340154,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340160 PeerCount=6 +7:49AM DBG Fetching latest blocks from=340155 max=340154 to=340160 +7:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340160,"MaxBlockRetrieved":340160,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340165 PeerCount=6 +7:49AM DBG Fetching latest blocks from=340161 max=340160 to=340165 +7:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340165,"MaxBlockRetrieved":340160,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340171 PeerCount=6 +7:49AM DBG Fetching latest blocks from=340166 max=340165 to=340171 +7:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340171,"MaxBlockRetrieved":340171,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340176 PeerCount=6 +7:49AM DBG Fetching latest blocks from=340172 max=340171 to=340176 +7:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340176,"MaxBlockRetrieved":340176,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340181 PeerCount=6 +7:49AM DBG Fetching latest blocks from=340177 max=340176 to=340181 +7:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340181,"MaxBlockRetrieved":340181,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340187 PeerCount=6 +7:49AM DBG Fetching latest blocks from=340182 max=340181 to=340187 +7:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340187,"MaxBlockRetrieved":340187,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340192 PeerCount=6 +7:49AM DBG Fetching latest blocks from=340188 max=340187 to=340192 +7:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340192,"MaxBlockRetrieved":340192,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340198 PeerCount=6 +7:49AM DBG Fetching latest blocks from=340193 max=340192 to=340198 +7:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340198,"MaxBlockRetrieved":340198,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340203 PeerCount=6 +7:49AM DBG Fetching latest blocks from=340199 max=340198 to=340203 +7:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340203,"MaxBlockRetrieved":340203,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340208 PeerCount=6 +7:50AM DBG Fetching latest blocks from=340204 max=340203 to=340208 +7:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340208,"MaxBlockRetrieved":340208,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340214 PeerCount=6 +7:50AM DBG Fetching latest blocks from=340209 max=340208 to=340214 +7:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340214,"MaxBlockRetrieved":340214,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340219 PeerCount=6 +7:50AM DBG Fetching latest blocks from=340215 max=340214 to=340219 +7:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340219,"MaxBlockRetrieved":340219,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340225 PeerCount=6 +7:50AM DBG Fetching latest blocks from=340220 max=340219 to=340225 +7:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340225,"MaxBlockRetrieved":340225,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340230 PeerCount=6 +7:50AM DBG Fetching latest blocks from=340226 max=340225 to=340230 +7:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340230,"MaxBlockRetrieved":340230,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340235 PeerCount=6 +7:50AM DBG Fetching latest blocks from=340231 max=340230 to=340235 +7:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340235,"MaxBlockRetrieved":340230,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340241 PeerCount=6 +7:50AM DBG Fetching latest blocks from=340236 max=340235 to=340241 +7:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340241,"MaxBlockRetrieved":340241,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340246 PeerCount=6 +7:50AM DBG Fetching latest blocks from=340242 max=340241 to=340246 +7:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340246,"MaxBlockRetrieved":340246,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340252 PeerCount=6 +7:50AM DBG Fetching latest blocks from=340247 max=340246 to=340252 +7:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340252,"MaxBlockRetrieved":340252,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340257 PeerCount=6 +7:50AM DBG Fetching latest blocks from=340253 max=340252 to=340257 +7:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340257,"MaxBlockRetrieved":340257,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340263 PeerCount=6 +7:51AM DBG Fetching latest blocks from=340258 max=340257 to=340263 +7:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340263,"MaxBlockRetrieved":340263,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340268 PeerCount=6 +7:51AM DBG Fetching latest blocks from=340264 max=340263 to=340268 +7:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340268,"MaxBlockRetrieved":340268,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340274 PeerCount=6 +7:51AM DBG Fetching latest blocks from=340269 max=340268 to=340274 +7:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340274,"MaxBlockRetrieved":340274,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340280 PeerCount=6 +7:51AM DBG Fetching latest blocks from=340275 max=340274 to=340280 +7:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340280,"MaxBlockRetrieved":340280,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340286 PeerCount=6 +7:51AM DBG Fetching latest blocks from=340281 max=340280 to=340286 +7:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340286,"MaxBlockRetrieved":340280,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340291 PeerCount=6 +7:51AM DBG Fetching latest blocks from=340287 max=340286 to=340291 +7:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340291,"MaxBlockRetrieved":340291,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340297 PeerCount=6 +7:51AM DBG Fetching latest blocks from=340292 max=340291 to=340297 +7:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340297,"MaxBlockRetrieved":340297,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340302 PeerCount=6 +7:51AM DBG Fetching latest blocks from=340298 max=340297 to=340302 +7:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340302,"MaxBlockRetrieved":340302,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340308 PeerCount=6 +7:51AM DBG Fetching latest blocks from=340303 max=340302 to=340308 +7:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340308,"MaxBlockRetrieved":340308,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340313 PeerCount=6 +7:51AM DBG Fetching latest blocks from=340309 max=340308 to=340313 +7:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340313,"MaxBlockRetrieved":340313,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340318 PeerCount=6 +7:51AM DBG Fetching latest blocks from=340314 max=340313 to=340318 +7:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340318,"MaxBlockRetrieved":340318,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340324 PeerCount=6 +7:52AM DBG Fetching latest blocks from=340319 max=340318 to=340324 +7:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340324,"MaxBlockRetrieved":340324,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340329 PeerCount=6 +7:52AM DBG Fetching latest blocks from=340325 max=340324 to=340329 +7:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340329,"MaxBlockRetrieved":340329,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340334 PeerCount=6 +7:52AM DBG Fetching latest blocks from=340330 max=340329 to=340334 +7:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340334,"MaxBlockRetrieved":340334,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340340 PeerCount=6 +7:52AM DBG Fetching latest blocks from=340335 max=340334 to=340340 +7:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340340,"MaxBlockRetrieved":340340,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340345 PeerCount=6 +7:52AM DBG Fetching latest blocks from=340341 max=340340 to=340345 +7:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340345,"MaxBlockRetrieved":340340,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340351 PeerCount=6 +7:52AM DBG Fetching latest blocks from=340346 max=340345 to=340351 +7:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340351,"MaxBlockRetrieved":340351,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340356 PeerCount=6 +7:52AM DBG Fetching latest blocks from=340352 max=340351 to=340356 +7:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340356,"MaxBlockRetrieved":340356,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340361 PeerCount=6 +7:52AM DBG Fetching latest blocks from=340357 max=340356 to=340361 +7:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340361,"MaxBlockRetrieved":340361,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340367 PeerCount=6 +7:52AM DBG Fetching latest blocks from=340362 max=340361 to=340367 +7:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340367,"MaxBlockRetrieved":340367,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340372 PeerCount=6 +7:52AM DBG Fetching latest blocks from=340368 max=340367 to=340372 +7:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340372,"MaxBlockRetrieved":340372,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340378 PeerCount=6 +7:52AM DBG Fetching latest blocks from=340373 max=340372 to=340378 +7:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340378,"MaxBlockRetrieved":340378,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340383 PeerCount=6 +7:53AM DBG Fetching latest blocks from=340379 max=340378 to=340383 +7:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340383,"MaxBlockRetrieved":340383,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340388 PeerCount=6 +7:53AM DBG Fetching latest blocks from=340384 max=340383 to=340388 +7:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340388,"MaxBlockRetrieved":340388,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340394 PeerCount=6 +7:53AM DBG Fetching latest blocks from=340389 max=340388 to=340394 +7:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340394,"MaxBlockRetrieved":340394,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340399 PeerCount=6 +7:53AM DBG Fetching latest blocks from=340395 max=340394 to=340399 +7:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340399,"MaxBlockRetrieved":340399,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340405 PeerCount=6 +7:53AM DBG Fetching latest blocks from=340400 max=340399 to=340405 +7:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340405,"MaxBlockRetrieved":340399,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340410 PeerCount=6 +7:53AM DBG Fetching latest blocks from=340406 max=340405 to=340410 +7:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340410,"MaxBlockRetrieved":340410,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340415 PeerCount=6 +7:53AM DBG Fetching latest blocks from=340411 max=340410 to=340415 +7:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340415,"MaxBlockRetrieved":340415,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340421 PeerCount=6 +7:53AM DBG Fetching latest blocks from=340416 max=340415 to=340421 +7:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340421,"MaxBlockRetrieved":340421,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340427 PeerCount=6 +7:53AM DBG Fetching latest blocks from=340422 max=340421 to=340427 +7:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340427,"MaxBlockRetrieved":340427,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340432 PeerCount=6 +7:53AM DBG Fetching latest blocks from=340428 max=340427 to=340432 +7:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340432,"MaxBlockRetrieved":340432,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340438 PeerCount=6 +7:54AM DBG Fetching latest blocks from=340433 max=340432 to=340438 +7:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340438,"MaxBlockRetrieved":340438,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340444 PeerCount=6 +7:54AM DBG Fetching latest blocks from=340439 max=340438 to=340444 +7:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340444,"MaxBlockRetrieved":340444,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340449 PeerCount=6 +7:54AM DBG Fetching latest blocks from=340445 max=340444 to=340449 +7:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340449,"MaxBlockRetrieved":340449,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340455 PeerCount=6 +7:54AM DBG Fetching latest blocks from=340450 max=340449 to=340455 +7:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340455,"MaxBlockRetrieved":340455,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340460 PeerCount=6 +7:54AM DBG Fetching latest blocks from=340456 max=340455 to=340460 +7:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340460,"MaxBlockRetrieved":340460,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340465 PeerCount=6 +7:54AM DBG Fetching latest blocks from=340461 max=340460 to=340465 +7:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340465,"MaxBlockRetrieved":340465,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340471 PeerCount=6 +7:54AM DBG Fetching latest blocks from=340466 max=340465 to=340471 +7:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340471,"MaxBlockRetrieved":340465,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340476 PeerCount=6 +7:54AM DBG Fetching latest blocks from=340472 max=340471 to=340476 +7:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340476,"MaxBlockRetrieved":340476,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340482 PeerCount=6 +7:54AM DBG Fetching latest blocks from=340477 max=340476 to=340482 +7:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340482,"MaxBlockRetrieved":340482,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340487 PeerCount=6 +7:54AM DBG Fetching latest blocks from=340483 max=340482 to=340487 +7:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340487,"MaxBlockRetrieved":340487,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340492 PeerCount=6 +7:54AM DBG Fetching latest blocks from=340488 max=340487 to=340492 +7:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340492,"MaxBlockRetrieved":340492,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340498 PeerCount=6 +7:55AM DBG Fetching latest blocks from=340493 max=340492 to=340498 +7:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340498,"MaxBlockRetrieved":340498,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340503 PeerCount=6 +7:55AM DBG Fetching latest blocks from=340499 max=340498 to=340503 +7:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340503,"MaxBlockRetrieved":340503,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340509 PeerCount=6 +7:55AM DBG Fetching latest blocks from=340504 max=340503 to=340509 +7:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340509,"MaxBlockRetrieved":340509,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340514 PeerCount=6 +7:55AM DBG Fetching latest blocks from=340510 max=340509 to=340514 +7:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340514,"MaxBlockRetrieved":340514,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340519 PeerCount=6 +7:55AM DBG Fetching latest blocks from=340515 max=340514 to=340519 +7:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340519,"MaxBlockRetrieved":340519,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340525 PeerCount=6 +7:55AM DBG Fetching latest blocks from=340520 max=340519 to=340525 +7:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340525,"MaxBlockRetrieved":340525,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340530 PeerCount=6 +7:55AM DBG Fetching latest blocks from=340526 max=340525 to=340530 +7:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340530,"MaxBlockRetrieved":340530,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340536 PeerCount=6 +7:55AM DBG Fetching latest blocks from=340531 max=340530 to=340536 +7:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340536,"MaxBlockRetrieved":340536,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340541 PeerCount=6 +7:55AM DBG Fetching latest blocks from=340537 max=340536 to=340541 +7:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340541,"MaxBlockRetrieved":340541,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340546 PeerCount=6 +7:55AM DBG Fetching latest blocks from=340542 max=340541 to=340546 +7:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340546,"MaxBlockRetrieved":340546,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340552 PeerCount=6 +7:55AM DBG Fetching latest blocks from=340547 max=340546 to=340552 +7:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340552,"MaxBlockRetrieved":340552,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340557 PeerCount=6 +7:56AM DBG Fetching latest blocks from=340553 max=340552 to=340557 +7:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340557,"MaxBlockRetrieved":340557,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340563 PeerCount=6 +7:56AM DBG Fetching latest blocks from=340558 max=340557 to=340563 +7:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340563,"MaxBlockRetrieved":340563,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340568 PeerCount=6 +7:56AM DBG Fetching latest blocks from=340564 max=340563 to=340568 +7:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340568,"MaxBlockRetrieved":340568,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340573 PeerCount=6 +7:56AM DBG Fetching latest blocks from=340569 max=340568 to=340573 +7:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340573,"MaxBlockRetrieved":340573,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340579 PeerCount=6 +7:56AM DBG Fetching latest blocks from=340574 max=340573 to=340579 +7:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340579,"MaxBlockRetrieved":340573,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340584 PeerCount=6 +7:56AM DBG Fetching latest blocks from=340580 max=340579 to=340584 +7:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340584,"MaxBlockRetrieved":340584,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340590 PeerCount=6 +7:56AM DBG Fetching latest blocks from=340585 max=340584 to=340590 +7:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340590,"MaxBlockRetrieved":340590,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340595 PeerCount=6 +7:56AM DBG Fetching latest blocks from=340591 max=340590 to=340595 +7:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340595,"MaxBlockRetrieved":340595,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340600 PeerCount=6 +7:56AM DBG Fetching latest blocks from=340596 max=340595 to=340600 +7:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340600,"MaxBlockRetrieved":340600,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340606 PeerCount=6 +7:56AM DBG Fetching latest blocks from=340601 max=340600 to=340606 +7:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340606,"MaxBlockRetrieved":340606,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340611 PeerCount=6 +7:56AM DBG Fetching latest blocks from=340607 max=340606 to=340611 +7:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340611,"MaxBlockRetrieved":340611,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340617 PeerCount=6 +7:57AM DBG Fetching latest blocks from=340612 max=340611 to=340617 +7:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340617,"MaxBlockRetrieved":340617,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340622 PeerCount=6 +7:57AM DBG Fetching latest blocks from=340618 max=340617 to=340622 +7:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340622,"MaxBlockRetrieved":340622,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340627 PeerCount=6 +7:57AM DBG Fetching latest blocks from=340623 max=340622 to=340627 +7:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340627,"MaxBlockRetrieved":340627,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340633 PeerCount=6 +7:57AM DBG Fetching latest blocks from=340628 max=340627 to=340633 +7:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340633,"MaxBlockRetrieved":340633,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340638 PeerCount=6 +7:57AM DBG Fetching latest blocks from=340634 max=340633 to=340638 +7:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340638,"MaxBlockRetrieved":340633,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340644 PeerCount=6 +7:57AM DBG Fetching latest blocks from=340639 max=340638 to=340644 +7:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340644,"MaxBlockRetrieved":340644,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340649 PeerCount=6 +7:57AM DBG Fetching latest blocks from=340645 max=340644 to=340649 +7:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340649,"MaxBlockRetrieved":340649,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340654 PeerCount=6 +7:57AM DBG Fetching latest blocks from=340650 max=340649 to=340654 +7:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340654,"MaxBlockRetrieved":340654,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340660 PeerCount=6 +7:57AM DBG Fetching latest blocks from=340655 max=340654 to=340660 +7:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340660,"MaxBlockRetrieved":340660,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340665 PeerCount=6 +7:57AM DBG Fetching latest blocks from=340661 max=340660 to=340665 +7:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340665,"MaxBlockRetrieved":340665,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340671 PeerCount=6 +7:58AM DBG Fetching latest blocks from=340666 max=340665 to=340671 +7:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340671,"MaxBlockRetrieved":340671,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340676 PeerCount=6 +7:58AM DBG Fetching latest blocks from=340672 max=340671 to=340676 +7:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340676,"MaxBlockRetrieved":340676,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340681 PeerCount=6 +7:58AM DBG Fetching latest blocks from=340677 max=340676 to=340681 +7:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340681,"MaxBlockRetrieved":340681,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340687 PeerCount=6 +7:58AM DBG Fetching latest blocks from=340682 max=340681 to=340687 +7:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340687,"MaxBlockRetrieved":340687,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340692 PeerCount=6 +7:58AM DBG Fetching latest blocks from=340688 max=340687 to=340692 +7:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340692,"MaxBlockRetrieved":340692,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340698 PeerCount=6 +7:58AM DBG Fetching latest blocks from=340693 max=340692 to=340698 +7:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340698,"MaxBlockRetrieved":340692,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340703 PeerCount=6 +7:58AM DBG Fetching latest blocks from=340699 max=340698 to=340703 +7:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340703,"MaxBlockRetrieved":340703,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340708 PeerCount=6 +7:58AM DBG Fetching latest blocks from=340704 max=340703 to=340708 +7:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340708,"MaxBlockRetrieved":340708,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340714 PeerCount=6 +7:58AM DBG Fetching latest blocks from=340709 max=340708 to=340714 +7:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340714,"MaxBlockRetrieved":340714,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340719 PeerCount=6 +7:58AM DBG Fetching latest blocks from=340715 max=340714 to=340719 +7:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340719,"MaxBlockRetrieved":340719,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340725 PeerCount=6 +7:58AM DBG Fetching latest blocks from=340720 max=340719 to=340725 +7:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340725,"MaxBlockRetrieved":340719,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340730 PeerCount=6 +7:59AM DBG Fetching latest blocks from=340726 max=340725 to=340730 +7:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340730,"MaxBlockRetrieved":340730,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340736 PeerCount=6 +7:59AM DBG Fetching latest blocks from=340731 max=340730 to=340736 +7:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340736,"MaxBlockRetrieved":340736,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340742 PeerCount=6 +7:59AM DBG Fetching latest blocks from=340737 max=340736 to=340742 +7:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340742,"MaxBlockRetrieved":340742,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340747 PeerCount=6 +7:59AM DBG Fetching latest blocks from=340743 max=340742 to=340747 +7:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340747,"MaxBlockRetrieved":340742,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340753 PeerCount=6 +7:59AM DBG Fetching latest blocks from=340748 max=340747 to=340753 +7:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340753,"MaxBlockRetrieved":340753,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340759 PeerCount=6 +7:59AM DBG Fetching latest blocks from=340754 max=340753 to=340759 +7:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340759,"MaxBlockRetrieved":340759,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340764 PeerCount=6 +7:59AM DBG Fetching latest blocks from=340760 max=340759 to=340764 +7:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340764,"MaxBlockRetrieved":340764,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340769 PeerCount=6 +7:59AM DBG Fetching latest blocks from=340765 max=340764 to=340769 +7:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340769,"MaxBlockRetrieved":340769,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340775 PeerCount=6 +7:59AM DBG Fetching latest blocks from=340770 max=340769 to=340775 +7:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340775,"MaxBlockRetrieved":340775,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340780 PeerCount=6 +7:59AM DBG Fetching latest blocks from=340776 max=340775 to=340780 +7:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340780,"MaxBlockRetrieved":340775,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +7:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340786 PeerCount=6 +7:59AM DBG Fetching latest blocks from=340781 max=340780 to=340786 +7:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340786,"MaxBlockRetrieved":340786,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340791 PeerCount=6 +8:00AM DBG Fetching latest blocks from=340787 max=340786 to=340791 +8:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340791,"MaxBlockRetrieved":340786,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340796 PeerCount=6 +8:00AM DBG Fetching latest blocks from=340792 max=340791 to=340796 +8:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340796,"MaxBlockRetrieved":340796,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340802 PeerCount=6 +8:00AM DBG Fetching latest blocks from=340797 max=340796 to=340802 +8:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340802,"MaxBlockRetrieved":340802,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340807 PeerCount=6 +8:00AM DBG Fetching latest blocks from=340803 max=340802 to=340807 +8:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340807,"MaxBlockRetrieved":340807,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340813 PeerCount=6 +8:00AM DBG Fetching latest blocks from=340808 max=340807 to=340813 +8:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340813,"MaxBlockRetrieved":340813,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340818 PeerCount=6 +8:00AM DBG Fetching latest blocks from=340814 max=340813 to=340818 +8:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340818,"MaxBlockRetrieved":340818,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340823 PeerCount=6 +8:00AM DBG Fetching latest blocks from=340819 max=340818 to=340823 +8:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340823,"MaxBlockRetrieved":340823,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340829 PeerCount=6 +8:00AM DBG Fetching latest blocks from=340824 max=340823 to=340829 +8:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340829,"MaxBlockRetrieved":340829,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340834 PeerCount=6 +8:00AM DBG Fetching latest blocks from=340830 max=340829 to=340834 +8:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340834,"MaxBlockRetrieved":340834,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340840 PeerCount=6 +8:00AM DBG Fetching latest blocks from=340835 max=340834 to=340840 +8:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340840,"MaxBlockRetrieved":340840,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340845 PeerCount=6 +8:00AM DBG Fetching latest blocks from=340841 max=340840 to=340845 +8:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340845,"MaxBlockRetrieved":340845,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340850 PeerCount=6 +8:01AM DBG Fetching latest blocks from=340846 max=340845 to=340850 +8:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340850,"MaxBlockRetrieved":340845,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340856 PeerCount=6 +8:01AM DBG Fetching latest blocks from=340851 max=340850 to=340856 +8:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340856,"MaxBlockRetrieved":340856,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340861 PeerCount=6 +8:01AM DBG Fetching latest blocks from=340857 max=340856 to=340861 +8:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340861,"MaxBlockRetrieved":340861,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340867 PeerCount=6 +8:01AM DBG Fetching latest blocks from=340862 max=340861 to=340867 +8:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340867,"MaxBlockRetrieved":340867,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340872 PeerCount=6 +8:01AM DBG Fetching latest blocks from=340868 max=340867 to=340872 +8:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340872,"MaxBlockRetrieved":340872,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340877 PeerCount=6 +8:01AM DBG Fetching latest blocks from=340873 max=340872 to=340877 +8:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340877,"MaxBlockRetrieved":340877,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340883 PeerCount=6 +8:01AM DBG Fetching latest blocks from=340878 max=340877 to=340883 +8:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340883,"MaxBlockRetrieved":340883,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340888 PeerCount=6 +8:01AM DBG Fetching latest blocks from=340884 max=340883 to=340888 +8:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340888,"MaxBlockRetrieved":340888,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340894 PeerCount=6 +8:01AM DBG Fetching latest blocks from=340889 max=340888 to=340894 +8:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340894,"MaxBlockRetrieved":340894,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340899 PeerCount=6 +8:01AM DBG Fetching latest blocks from=340895 max=340894 to=340899 +8:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340899,"MaxBlockRetrieved":340899,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340904 PeerCount=6 +8:02AM DBG Fetching latest blocks from=340900 max=340899 to=340904 +8:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340904,"MaxBlockRetrieved":340904,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340910 PeerCount=6 +8:02AM DBG Fetching latest blocks from=340905 max=340904 to=340910 +8:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340910,"MaxBlockRetrieved":340910,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340915 PeerCount=6 +8:02AM DBG Fetching latest blocks from=340911 max=340910 to=340915 +8:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340915,"MaxBlockRetrieved":340915,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340921 PeerCount=6 +8:02AM DBG Fetching latest blocks from=340916 max=340915 to=340921 +8:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340921,"MaxBlockRetrieved":340915,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340926 PeerCount=6 +8:02AM DBG Fetching latest blocks from=340922 max=340921 to=340926 +8:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340926,"MaxBlockRetrieved":340926,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340931 PeerCount=6 +8:02AM DBG Fetching latest blocks from=340927 max=340926 to=340931 +8:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340931,"MaxBlockRetrieved":340931,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340937 PeerCount=6 +8:02AM DBG Fetching latest blocks from=340932 max=340931 to=340937 +8:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340937,"MaxBlockRetrieved":340937,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340942 PeerCount=6 +8:02AM DBG Fetching latest blocks from=340938 max=340937 to=340942 +8:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340942,"MaxBlockRetrieved":340942,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340947 PeerCount=6 +8:02AM DBG Fetching latest blocks from=340943 max=340942 to=340947 +8:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340947,"MaxBlockRetrieved":340947,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340953 PeerCount=6 +8:02AM DBG Fetching latest blocks from=340948 max=340947 to=340953 +8:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340953,"MaxBlockRetrieved":340953,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340958 PeerCount=6 +8:02AM DBG Fetching latest blocks from=340954 max=340953 to=340958 +8:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340958,"MaxBlockRetrieved":340958,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340964 PeerCount=6 +8:03AM DBG Fetching latest blocks from=340959 max=340958 to=340964 +8:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340964,"MaxBlockRetrieved":340964,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340969 PeerCount=6 +8:03AM DBG Fetching latest blocks from=340965 max=340964 to=340969 +8:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340969,"MaxBlockRetrieved":340969,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340974 PeerCount=6 +8:03AM DBG Fetching latest blocks from=340970 max=340969 to=340974 +8:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340974,"MaxBlockRetrieved":340974,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340980 PeerCount=6 +8:03AM DBG Fetching latest blocks from=340975 max=340974 to=340980 +8:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340980,"MaxBlockRetrieved":340974,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340985 PeerCount=6 +8:03AM DBG Fetching latest blocks from=340981 max=340980 to=340985 +8:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340985,"MaxBlockRetrieved":340985,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340991 PeerCount=6 +8:03AM DBG Fetching latest blocks from=340986 max=340985 to=340991 +8:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340991,"MaxBlockRetrieved":340991,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=340996 PeerCount=6 +8:03AM DBG Fetching latest blocks from=340992 max=340991 to=340996 +8:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":340996,"MaxBlockRetrieved":340996,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341001 PeerCount=6 +8:03AM DBG Fetching latest blocks from=340997 max=340996 to=341001 +8:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341001,"MaxBlockRetrieved":341001,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341007 PeerCount=6 +8:03AM DBG Fetching latest blocks from=341002 max=341001 to=341007 +8:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341007,"MaxBlockRetrieved":341007,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341012 PeerCount=6 +8:03AM DBG Fetching latest blocks from=341008 max=341007 to=341012 +8:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341012,"MaxBlockRetrieved":341012,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341018 PeerCount=6 +8:03AM DBG Fetching latest blocks from=341013 max=341012 to=341018 +8:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341018,"MaxBlockRetrieved":341018,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341023 PeerCount=6 +8:04AM DBG Fetching latest blocks from=341019 max=341018 to=341023 +8:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341023,"MaxBlockRetrieved":341023,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341028 PeerCount=6 +8:04AM DBG Fetching latest blocks from=341024 max=341023 to=341028 +8:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341028,"MaxBlockRetrieved":341028,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341034 PeerCount=6 +8:04AM DBG Fetching latest blocks from=341029 max=341028 to=341034 +8:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341034,"MaxBlockRetrieved":341034,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341039 PeerCount=6 +8:04AM DBG Fetching latest blocks from=341035 max=341034 to=341039 +8:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341039,"MaxBlockRetrieved":341034,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341045 PeerCount=6 +8:04AM DBG Fetching latest blocks from=341040 max=341039 to=341045 +8:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341045,"MaxBlockRetrieved":341045,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341050 PeerCount=6 +8:04AM DBG Fetching latest blocks from=341046 max=341045 to=341050 +8:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341050,"MaxBlockRetrieved":341050,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341055 PeerCount=6 +8:04AM DBG Fetching latest blocks from=341051 max=341050 to=341055 +8:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341055,"MaxBlockRetrieved":341055,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341061 PeerCount=6 +8:04AM DBG Fetching latest blocks from=341056 max=341055 to=341061 +8:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341061,"MaxBlockRetrieved":341061,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341066 PeerCount=6 +8:04AM DBG Fetching latest blocks from=341062 max=341061 to=341066 +8:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341066,"MaxBlockRetrieved":341066,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341072 PeerCount=6 +8:04AM DBG Fetching latest blocks from=341067 max=341066 to=341072 +8:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341072,"MaxBlockRetrieved":341072,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341077 PeerCount=6 +8:04AM DBG Fetching latest blocks from=341073 max=341072 to=341077 +8:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341077,"MaxBlockRetrieved":341077,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341082 PeerCount=6 +8:05AM DBG Fetching latest blocks from=341078 max=341077 to=341082 +8:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341082,"MaxBlockRetrieved":341082,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341088 PeerCount=6 +8:05AM DBG Fetching latest blocks from=341083 max=341082 to=341088 +8:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341088,"MaxBlockRetrieved":341088,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341093 PeerCount=6 +8:05AM DBG Fetching latest blocks from=341089 max=341088 to=341093 +8:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341093,"MaxBlockRetrieved":341093,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341099 PeerCount=6 +8:05AM DBG Fetching latest blocks from=341094 max=341093 to=341099 +8:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341099,"MaxBlockRetrieved":341093,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341104 PeerCount=6 +8:05AM DBG Fetching latest blocks from=341100 max=341099 to=341104 +8:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341104,"MaxBlockRetrieved":341104,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341110 PeerCount=6 +8:05AM DBG Fetching latest blocks from=341105 max=341104 to=341110 +8:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341110,"MaxBlockRetrieved":341110,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341115 PeerCount=6 +8:05AM DBG Fetching latest blocks from=341111 max=341110 to=341115 +8:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341115,"MaxBlockRetrieved":341115,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341121 PeerCount=6 +8:05AM DBG Fetching latest blocks from=341116 max=341115 to=341121 +8:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341121,"MaxBlockRetrieved":341121,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341126 PeerCount=6 +8:05AM DBG Fetching latest blocks from=341122 max=341121 to=341126 +8:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341126,"MaxBlockRetrieved":341126,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341132 PeerCount=6 +8:05AM DBG Fetching latest blocks from=341127 max=341126 to=341132 +8:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341132,"MaxBlockRetrieved":341132,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341138 PeerCount=6 +8:06AM DBG Fetching latest blocks from=341133 max=341132 to=341138 +8:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341138,"MaxBlockRetrieved":341138,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341143 PeerCount=6 +8:06AM DBG Fetching latest blocks from=341139 max=341138 to=341143 +8:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341143,"MaxBlockRetrieved":341143,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341149 PeerCount=6 +8:06AM DBG Fetching latest blocks from=341144 max=341143 to=341149 +8:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341149,"MaxBlockRetrieved":341149,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341154 PeerCount=6 +8:06AM DBG Fetching latest blocks from=341150 max=341149 to=341154 +8:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341154,"MaxBlockRetrieved":341154,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341159 PeerCount=6 +8:06AM DBG Fetching latest blocks from=341155 max=341154 to=341159 +8:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341159,"MaxBlockRetrieved":341159,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341165 PeerCount=6 +8:06AM DBG Fetching latest blocks from=341160 max=341159 to=341165 +8:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341165,"MaxBlockRetrieved":341165,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341170 PeerCount=6 +8:06AM DBG Fetching latest blocks from=341166 max=341165 to=341170 +8:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341170,"MaxBlockRetrieved":341170,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341175 PeerCount=6 +8:06AM DBG Fetching latest blocks from=341171 max=341170 to=341175 +8:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341175,"MaxBlockRetrieved":341170,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341181 PeerCount=6 +8:06AM DBG Fetching latest blocks from=341176 max=341175 to=341181 +8:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341181,"MaxBlockRetrieved":341181,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341186 PeerCount=6 +8:06AM DBG Fetching latest blocks from=341182 max=341181 to=341186 +8:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341186,"MaxBlockRetrieved":341181,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341192 PeerCount=6 +8:06AM DBG Fetching latest blocks from=341187 max=341186 to=341192 +8:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341192,"MaxBlockRetrieved":341192,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341197 PeerCount=6 +8:07AM DBG Fetching latest blocks from=341193 max=341192 to=341197 +8:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341197,"MaxBlockRetrieved":341197,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341202 PeerCount=6 +8:07AM DBG Fetching latest blocks from=341198 max=341197 to=341202 +8:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341202,"MaxBlockRetrieved":341202,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341208 PeerCount=6 +8:07AM DBG Fetching latest blocks from=341203 max=341202 to=341208 +8:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341208,"MaxBlockRetrieved":341208,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341213 PeerCount=6 +8:07AM DBG Fetching latest blocks from=341209 max=341208 to=341213 +8:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341213,"MaxBlockRetrieved":341213,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341219 PeerCount=6 +8:07AM DBG Fetching latest blocks from=341214 max=341213 to=341219 +8:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341219,"MaxBlockRetrieved":341219,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341224 PeerCount=6 +8:07AM DBG Fetching latest blocks from=341220 max=341219 to=341224 +8:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341224,"MaxBlockRetrieved":341224,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341229 PeerCount=6 +8:07AM DBG Fetching latest blocks from=341225 max=341224 to=341229 +8:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341229,"MaxBlockRetrieved":341229,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341235 PeerCount=6 +8:07AM DBG Fetching latest blocks from=341230 max=341229 to=341235 +8:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341235,"MaxBlockRetrieved":341235,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341240 PeerCount=6 +8:07AM DBG Fetching latest blocks from=341236 max=341235 to=341240 +8:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341240,"MaxBlockRetrieved":341240,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341245 PeerCount=6 +8:07AM DBG Fetching latest blocks from=341241 max=341240 to=341245 +8:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341245,"MaxBlockRetrieved":341245,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341251 PeerCount=6 +8:07AM DBG Fetching latest blocks from=341246 max=341245 to=341251 +8:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341251,"MaxBlockRetrieved":341251,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341256 PeerCount=6 +8:08AM DBG Fetching latest blocks from=341252 max=341251 to=341256 +8:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341256,"MaxBlockRetrieved":341251,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341262 PeerCount=6 +8:08AM DBG Fetching latest blocks from=341257 max=341256 to=341262 +8:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341262,"MaxBlockRetrieved":341262,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341267 PeerCount=6 +8:08AM DBG Fetching latest blocks from=341263 max=341262 to=341267 +8:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341267,"MaxBlockRetrieved":341267,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341272 PeerCount=6 +8:08AM DBG Fetching latest blocks from=341268 max=341267 to=341272 +8:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341272,"MaxBlockRetrieved":341272,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341278 PeerCount=6 +8:08AM DBG Fetching latest blocks from=341273 max=341272 to=341278 +8:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341278,"MaxBlockRetrieved":341278,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341283 PeerCount=6 +8:08AM DBG Fetching latest blocks from=341279 max=341278 to=341283 +8:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341283,"MaxBlockRetrieved":341283,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341289 PeerCount=6 +8:08AM DBG Fetching latest blocks from=341284 max=341283 to=341289 +8:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341289,"MaxBlockRetrieved":341289,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341294 PeerCount=6 +8:08AM DBG Fetching latest blocks from=341290 max=341289 to=341294 +8:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341294,"MaxBlockRetrieved":341294,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341299 PeerCount=6 +8:08AM DBG Fetching latest blocks from=341295 max=341294 to=341299 +8:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341299,"MaxBlockRetrieved":341299,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341305 PeerCount=6 +8:08AM DBG Fetching latest blocks from=341300 max=341299 to=341305 +8:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341305,"MaxBlockRetrieved":341305,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341311 PeerCount=6 +8:08AM DBG Fetching latest blocks from=341306 max=341305 to=341311 +8:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341311,"MaxBlockRetrieved":341311,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341316 PeerCount=6 +8:09AM DBG Fetching latest blocks from=341312 max=341311 to=341316 +8:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341316,"MaxBlockRetrieved":341316,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341322 PeerCount=6 +8:09AM DBG Fetching latest blocks from=341317 max=341316 to=341322 +8:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341322,"MaxBlockRetrieved":341322,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341327 PeerCount=6 +8:09AM DBG Fetching latest blocks from=341323 max=341322 to=341327 +8:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341327,"MaxBlockRetrieved":341327,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341333 PeerCount=6 +8:09AM DBG Fetching latest blocks from=341328 max=341327 to=341333 +8:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341333,"MaxBlockRetrieved":341333,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341338 PeerCount=6 +8:09AM DBG Fetching latest blocks from=341334 max=341333 to=341338 +8:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341338,"MaxBlockRetrieved":341333,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341343 PeerCount=6 +8:09AM DBG Fetching latest blocks from=341339 max=341338 to=341343 +8:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341343,"MaxBlockRetrieved":341343,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341349 PeerCount=6 +8:09AM DBG Fetching latest blocks from=341344 max=341343 to=341349 +8:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341349,"MaxBlockRetrieved":341349,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341354 PeerCount=6 +8:09AM DBG Fetching latest blocks from=341350 max=341349 to=341354 +8:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341354,"MaxBlockRetrieved":341354,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341360 PeerCount=6 +8:09AM DBG Fetching latest blocks from=341355 max=341354 to=341360 +8:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341360,"MaxBlockRetrieved":341360,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341365 PeerCount=6 +8:09AM DBG Fetching latest blocks from=341361 max=341360 to=341365 +8:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341365,"MaxBlockRetrieved":341365,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341371 PeerCount=6 +8:09AM DBG Fetching latest blocks from=341366 max=341365 to=341371 +8:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341371,"MaxBlockRetrieved":341371,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341376 PeerCount=6 +8:10AM DBG Fetching latest blocks from=341372 max=341371 to=341376 +8:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341376,"MaxBlockRetrieved":341376,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341382 PeerCount=6 +8:10AM DBG Fetching latest blocks from=341377 max=341376 to=341382 +8:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341382,"MaxBlockRetrieved":341382,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341387 PeerCount=6 +8:10AM DBG Fetching latest blocks from=341383 max=341382 to=341387 +8:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341387,"MaxBlockRetrieved":341387,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341392 PeerCount=6 +8:10AM DBG Fetching latest blocks from=341388 max=341387 to=341392 +8:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341392,"MaxBlockRetrieved":341392,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341398 PeerCount=6 +8:10AM DBG Fetching latest blocks from=341393 max=341392 to=341398 +8:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341398,"MaxBlockRetrieved":341398,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341403 PeerCount=6 +8:10AM DBG Fetching latest blocks from=341399 max=341398 to=341403 +8:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341403,"MaxBlockRetrieved":341403,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341409 PeerCount=6 +8:10AM DBG Fetching latest blocks from=341404 max=341403 to=341409 +8:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341409,"MaxBlockRetrieved":341409,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341414 PeerCount=6 +8:10AM DBG Fetching latest blocks from=341410 max=341409 to=341414 +8:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341414,"MaxBlockRetrieved":341409,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341419 PeerCount=6 +8:10AM DBG Fetching latest blocks from=341415 max=341414 to=341419 +8:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341419,"MaxBlockRetrieved":341419,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341425 PeerCount=6 +8:10AM DBG Fetching latest blocks from=341420 max=341419 to=341425 +8:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341425,"MaxBlockRetrieved":341419,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341430 PeerCount=6 +8:11AM DBG Fetching latest blocks from=341426 max=341425 to=341430 +8:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341430,"MaxBlockRetrieved":341430,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341435 PeerCount=6 +8:11AM DBG Fetching latest blocks from=341431 max=341430 to=341435 +8:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341435,"MaxBlockRetrieved":341435,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341441 PeerCount=6 +8:11AM DBG Fetching latest blocks from=341436 max=341435 to=341441 +8:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341441,"MaxBlockRetrieved":341441,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341446 PeerCount=6 +8:11AM DBG Fetching latest blocks from=341442 max=341441 to=341446 +8:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341446,"MaxBlockRetrieved":341446,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341452 PeerCount=6 +8:11AM DBG Fetching latest blocks from=341447 max=341446 to=341452 +8:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341452,"MaxBlockRetrieved":341452,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341457 PeerCount=6 +8:11AM DBG Fetching latest blocks from=341453 max=341452 to=341457 +8:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341457,"MaxBlockRetrieved":341457,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341462 PeerCount=6 +8:11AM DBG Fetching latest blocks from=341458 max=341457 to=341462 +8:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341462,"MaxBlockRetrieved":341462,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341468 PeerCount=6 +8:11AM DBG Fetching latest blocks from=341463 max=341462 to=341468 +8:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341468,"MaxBlockRetrieved":341468,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341473 PeerCount=6 +8:11AM DBG Fetching latest blocks from=341469 max=341468 to=341473 +8:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341473,"MaxBlockRetrieved":341473,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341478 PeerCount=6 +8:11AM DBG Fetching latest blocks from=341474 max=341473 to=341478 +8:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341478,"MaxBlockRetrieved":341478,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341484 PeerCount=6 +8:11AM DBG Fetching latest blocks from=341479 max=341478 to=341484 +8:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341484,"MaxBlockRetrieved":341484,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341489 PeerCount=6 +8:12AM DBG Fetching latest blocks from=341485 max=341484 to=341489 +8:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341489,"MaxBlockRetrieved":341489,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341495 PeerCount=6 +8:12AM DBG Fetching latest blocks from=341490 max=341489 to=341495 +8:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341495,"MaxBlockRetrieved":341495,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341500 PeerCount=6 +8:12AM DBG Fetching latest blocks from=341496 max=341495 to=341500 +8:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341500,"MaxBlockRetrieved":341500,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341505 PeerCount=6 +8:12AM DBG Fetching latest blocks from=341501 max=341500 to=341505 +8:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341505,"MaxBlockRetrieved":341505,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341511 PeerCount=6 +8:12AM DBG Fetching latest blocks from=341506 max=341505 to=341511 +8:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341511,"MaxBlockRetrieved":341511,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341516 PeerCount=6 +8:12AM DBG Fetching latest blocks from=341512 max=341511 to=341516 +8:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341516,"MaxBlockRetrieved":341511,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341522 PeerCount=6 +8:12AM DBG Fetching latest blocks from=341517 max=341516 to=341522 +8:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341522,"MaxBlockRetrieved":341522,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341527 PeerCount=6 +8:12AM DBG Fetching latest blocks from=341523 max=341522 to=341527 +8:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341527,"MaxBlockRetrieved":341527,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341532 PeerCount=6 +8:12AM DBG Fetching latest blocks from=341528 max=341527 to=341532 +8:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341532,"MaxBlockRetrieved":341532,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341538 PeerCount=6 +8:12AM DBG Fetching latest blocks from=341533 max=341532 to=341538 +8:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341538,"MaxBlockRetrieved":341538,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341543 PeerCount=6 +8:12AM DBG Fetching latest blocks from=341539 max=341538 to=341543 +8:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341543,"MaxBlockRetrieved":341543,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341548 PeerCount=6 +8:13AM DBG Fetching latest blocks from=341544 max=341543 to=341548 +8:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341548,"MaxBlockRetrieved":341548,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341554 PeerCount=6 +8:13AM DBG Fetching latest blocks from=341549 max=341548 to=341554 +8:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341554,"MaxBlockRetrieved":341554,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341559 PeerCount=6 +8:13AM DBG Fetching latest blocks from=341555 max=341554 to=341559 +8:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341559,"MaxBlockRetrieved":341559,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341565 PeerCount=6 +8:13AM DBG Fetching latest blocks from=341560 max=341559 to=341565 +8:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341565,"MaxBlockRetrieved":341565,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341570 PeerCount=6 +8:13AM DBG Fetching latest blocks from=341566 max=341565 to=341570 +8:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341570,"MaxBlockRetrieved":341570,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341575 PeerCount=6 +8:13AM DBG Fetching latest blocks from=341571 max=341570 to=341575 +8:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341575,"MaxBlockRetrieved":341575,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341581 PeerCount=6 +8:13AM DBG Fetching latest blocks from=341576 max=341575 to=341581 +8:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341581,"MaxBlockRetrieved":341581,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341586 PeerCount=6 +8:13AM DBG Fetching latest blocks from=341582 max=341581 to=341586 +8:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341586,"MaxBlockRetrieved":341586,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341591 PeerCount=6 +8:13AM DBG Fetching latest blocks from=341587 max=341586 to=341591 +8:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341591,"MaxBlockRetrieved":341591,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341597 PeerCount=6 +8:13AM DBG Fetching latest blocks from=341592 max=341591 to=341597 +8:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341597,"MaxBlockRetrieved":341591,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341602 PeerCount=6 +8:13AM DBG Fetching latest blocks from=341598 max=341597 to=341602 +8:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341602,"MaxBlockRetrieved":341602,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341608 PeerCount=6 +8:14AM DBG Fetching latest blocks from=341603 max=341602 to=341608 +8:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341608,"MaxBlockRetrieved":341602,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341613 PeerCount=6 +8:14AM DBG Fetching latest blocks from=341609 max=341608 to=341613 +8:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341613,"MaxBlockRetrieved":341613,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341618 PeerCount=6 +8:14AM DBG Fetching latest blocks from=341614 max=341613 to=341618 +8:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341618,"MaxBlockRetrieved":341618,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341624 PeerCount=6 +8:14AM DBG Fetching latest blocks from=341619 max=341618 to=341624 +8:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341624,"MaxBlockRetrieved":341624,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341629 PeerCount=6 +8:14AM DBG Fetching latest blocks from=341625 max=341624 to=341629 +8:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341629,"MaxBlockRetrieved":341629,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341635 PeerCount=6 +8:14AM DBG Fetching latest blocks from=341630 max=341629 to=341635 +8:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341635,"MaxBlockRetrieved":341635,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341640 PeerCount=6 +8:14AM DBG Fetching latest blocks from=341636 max=341635 to=341640 +8:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341640,"MaxBlockRetrieved":341640,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341645 PeerCount=6 +8:14AM DBG Fetching latest blocks from=341641 max=341640 to=341645 +8:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341645,"MaxBlockRetrieved":341645,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341651 PeerCount=6 +8:14AM DBG Fetching latest blocks from=341646 max=341645 to=341651 +8:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341651,"MaxBlockRetrieved":341651,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341656 PeerCount=6 +8:14AM DBG Fetching latest blocks from=341652 max=341651 to=341656 +8:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341656,"MaxBlockRetrieved":341656,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341661 PeerCount=6 +8:14AM DBG Fetching latest blocks from=341657 max=341656 to=341661 +8:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341661,"MaxBlockRetrieved":341661,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341667 PeerCount=6 +8:15AM DBG Fetching latest blocks from=341662 max=341661 to=341667 +8:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341667,"MaxBlockRetrieved":341667,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341672 PeerCount=6 +8:15AM DBG Fetching latest blocks from=341668 max=341667 to=341672 +8:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341672,"MaxBlockRetrieved":341672,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341678 PeerCount=6 +8:15AM DBG Fetching latest blocks from=341673 max=341672 to=341678 +8:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341678,"MaxBlockRetrieved":341678,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341683 PeerCount=6 +8:15AM DBG Fetching latest blocks from=341679 max=341678 to=341683 +8:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341683,"MaxBlockRetrieved":341683,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341688 PeerCount=6 +8:15AM DBG Fetching latest blocks from=341684 max=341683 to=341688 +8:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341688,"MaxBlockRetrieved":341683,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341694 PeerCount=6 +8:15AM DBG Fetching latest blocks from=341689 max=341688 to=341694 +8:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341694,"MaxBlockRetrieved":341694,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341699 PeerCount=6 +8:15AM DBG Fetching latest blocks from=341695 max=341694 to=341699 +8:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341699,"MaxBlockRetrieved":341694,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341705 PeerCount=6 +8:15AM DBG Fetching latest blocks from=341700 max=341699 to=341705 +8:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341705,"MaxBlockRetrieved":341705,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341710 PeerCount=6 +8:15AM DBG Fetching latest blocks from=341706 max=341705 to=341710 +8:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341710,"MaxBlockRetrieved":341710,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341715 PeerCount=6 +8:15AM DBG Fetching latest blocks from=341711 max=341710 to=341715 +8:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341715,"MaxBlockRetrieved":341715,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341721 PeerCount=6 +8:15AM DBG Fetching latest blocks from=341716 max=341715 to=341721 +8:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341721,"MaxBlockRetrieved":341721,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341726 PeerCount=6 +8:16AM DBG Fetching latest blocks from=341722 max=341721 to=341726 +8:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341726,"MaxBlockRetrieved":341726,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341731 PeerCount=6 +8:16AM DBG Fetching latest blocks from=341727 max=341726 to=341731 +8:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341731,"MaxBlockRetrieved":341731,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341737 PeerCount=6 +8:16AM DBG Fetching latest blocks from=341732 max=341731 to=341737 +8:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341737,"MaxBlockRetrieved":341737,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341742 PeerCount=6 +8:16AM DBG Fetching latest blocks from=341738 max=341737 to=341742 +8:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341742,"MaxBlockRetrieved":341742,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341748 PeerCount=6 +8:16AM DBG Fetching latest blocks from=341743 max=341742 to=341748 +8:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341748,"MaxBlockRetrieved":341748,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341753 PeerCount=6 +8:16AM DBG Fetching latest blocks from=341749 max=341748 to=341753 +8:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341753,"MaxBlockRetrieved":341753,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341758 PeerCount=6 +8:16AM DBG Fetching latest blocks from=341754 max=341753 to=341758 +8:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341758,"MaxBlockRetrieved":341758,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341764 PeerCount=6 +8:16AM DBG Fetching latest blocks from=341759 max=341758 to=341764 +8:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341764,"MaxBlockRetrieved":341764,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341769 PeerCount=6 +8:16AM DBG Fetching latest blocks from=341765 max=341764 to=341769 +8:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341769,"MaxBlockRetrieved":341769,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341775 PeerCount=6 +8:16AM DBG Fetching latest blocks from=341770 max=341769 to=341775 +8:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341775,"MaxBlockRetrieved":341775,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341780 PeerCount=6 +8:16AM DBG Fetching latest blocks from=341776 max=341775 to=341780 +8:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341780,"MaxBlockRetrieved":341775,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341785 PeerCount=6 +8:17AM DBG Fetching latest blocks from=341781 max=341780 to=341785 +8:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341785,"MaxBlockRetrieved":341785,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341791 PeerCount=6 +8:17AM DBG Fetching latest blocks from=341786 max=341785 to=341791 +8:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341791,"MaxBlockRetrieved":341791,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341796 PeerCount=6 +8:17AM DBG Fetching latest blocks from=341792 max=341791 to=341796 +8:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341796,"MaxBlockRetrieved":341796,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341801 PeerCount=6 +8:17AM DBG Fetching latest blocks from=341797 max=341796 to=341801 +8:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341801,"MaxBlockRetrieved":341801,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341807 PeerCount=6 +8:17AM DBG Fetching latest blocks from=341802 max=341801 to=341807 +8:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341807,"MaxBlockRetrieved":341807,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341812 PeerCount=6 +8:17AM DBG Fetching latest blocks from=341808 max=341807 to=341812 +8:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341812,"MaxBlockRetrieved":341812,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341818 PeerCount=6 +8:17AM DBG Fetching latest blocks from=341813 max=341812 to=341818 +8:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341818,"MaxBlockRetrieved":341818,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341823 PeerCount=6 +8:17AM DBG Fetching latest blocks from=341819 max=341818 to=341823 +8:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341823,"MaxBlockRetrieved":341823,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341828 PeerCount=6 +8:17AM DBG Fetching latest blocks from=341824 max=341823 to=341828 +8:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341828,"MaxBlockRetrieved":341828,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341834 PeerCount=6 +8:17AM DBG Fetching latest blocks from=341829 max=341828 to=341834 +8:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341834,"MaxBlockRetrieved":341834,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341839 PeerCount=6 +8:18AM DBG Fetching latest blocks from=341835 max=341834 to=341839 +8:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341839,"MaxBlockRetrieved":341839,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341844 PeerCount=6 +8:18AM DBG Fetching latest blocks from=341840 max=341839 to=341844 +8:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341844,"MaxBlockRetrieved":341844,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341850 PeerCount=6 +8:18AM DBG Fetching latest blocks from=341845 max=341844 to=341850 +8:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341850,"MaxBlockRetrieved":341850,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341855 PeerCount=6 +8:18AM DBG Fetching latest blocks from=341851 max=341850 to=341855 +8:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341855,"MaxBlockRetrieved":341855,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341861 PeerCount=6 +8:18AM DBG Fetching latest blocks from=341856 max=341855 to=341861 +8:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341861,"MaxBlockRetrieved":341861,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341866 PeerCount=6 +8:18AM DBG Fetching latest blocks from=341862 max=341861 to=341866 +8:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341866,"MaxBlockRetrieved":341866,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341871 PeerCount=6 +8:18AM DBG Fetching latest blocks from=341867 max=341866 to=341871 +8:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341871,"MaxBlockRetrieved":341866,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341877 PeerCount=6 +8:18AM DBG Fetching latest blocks from=341872 max=341871 to=341877 +8:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341877,"MaxBlockRetrieved":341877,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341882 PeerCount=6 +8:18AM DBG Fetching latest blocks from=341878 max=341877 to=341882 +8:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341882,"MaxBlockRetrieved":341877,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341888 PeerCount=6 +8:18AM DBG Fetching latest blocks from=341883 max=341882 to=341888 +8:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341888,"MaxBlockRetrieved":341888,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341893 PeerCount=6 +8:18AM DBG Fetching latest blocks from=341889 max=341888 to=341893 +8:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341893,"MaxBlockRetrieved":341893,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341898 PeerCount=6 +8:19AM DBG Fetching latest blocks from=341894 max=341893 to=341898 +8:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341898,"MaxBlockRetrieved":341898,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341904 PeerCount=6 +8:19AM DBG Fetching latest blocks from=341899 max=341898 to=341904 +8:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341904,"MaxBlockRetrieved":341904,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341909 PeerCount=6 +8:19AM DBG Fetching latest blocks from=341905 max=341904 to=341909 +8:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341909,"MaxBlockRetrieved":341909,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341914 PeerCount=6 +8:19AM DBG Fetching latest blocks from=341910 max=341909 to=341914 +8:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341914,"MaxBlockRetrieved":341914,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341920 PeerCount=6 +8:19AM DBG Fetching latest blocks from=341915 max=341914 to=341920 +8:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341920,"MaxBlockRetrieved":341920,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341925 PeerCount=6 +8:19AM DBG Fetching latest blocks from=341921 max=341920 to=341925 +8:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341925,"MaxBlockRetrieved":341925,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341931 PeerCount=6 +8:19AM DBG Fetching latest blocks from=341926 max=341925 to=341931 +8:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341931,"MaxBlockRetrieved":341931,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341936 PeerCount=6 +8:19AM DBG Fetching latest blocks from=341932 max=341931 to=341936 +8:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341936,"MaxBlockRetrieved":341936,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341941 PeerCount=6 +8:19AM DBG Fetching latest blocks from=341937 max=341936 to=341941 +8:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341941,"MaxBlockRetrieved":341941,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341947 PeerCount=6 +8:19AM DBG Fetching latest blocks from=341942 max=341941 to=341947 +8:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341947,"MaxBlockRetrieved":341947,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341952 PeerCount=6 +8:19AM DBG Fetching latest blocks from=341948 max=341947 to=341952 +8:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341952,"MaxBlockRetrieved":341952,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341958 PeerCount=6 +8:20AM DBG Fetching latest blocks from=341953 max=341952 to=341958 +8:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341958,"MaxBlockRetrieved":341958,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341963 PeerCount=6 +8:20AM DBG Fetching latest blocks from=341959 max=341958 to=341963 +8:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341963,"MaxBlockRetrieved":341958,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341968 PeerCount=6 +8:20AM DBG Fetching latest blocks from=341964 max=341963 to=341968 +8:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341968,"MaxBlockRetrieved":341968,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341974 PeerCount=6 +8:20AM DBG Fetching latest blocks from=341969 max=341968 to=341974 +8:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341974,"MaxBlockRetrieved":341974,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341979 PeerCount=6 +8:20AM DBG Fetching latest blocks from=341975 max=341974 to=341979 +8:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341979,"MaxBlockRetrieved":341979,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341984 PeerCount=6 +8:20AM DBG Fetching latest blocks from=341980 max=341979 to=341984 +8:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341984,"MaxBlockRetrieved":341984,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341990 PeerCount=6 +8:20AM DBG Fetching latest blocks from=341985 max=341984 to=341990 +8:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341990,"MaxBlockRetrieved":341990,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=341995 PeerCount=6 +8:20AM DBG Fetching latest blocks from=341991 max=341990 to=341995 +8:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":341995,"MaxBlockRetrieved":341995,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342001 PeerCount=6 +8:20AM DBG Fetching latest blocks from=341996 max=341995 to=342001 +8:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342001,"MaxBlockRetrieved":342001,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342006 PeerCount=6 +8:20AM DBG Fetching latest blocks from=342002 max=342001 to=342006 +8:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342006,"MaxBlockRetrieved":342006,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342011 PeerCount=6 +8:20AM DBG Fetching latest blocks from=342007 max=342006 to=342011 +8:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342011,"MaxBlockRetrieved":342011,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342017 PeerCount=6 +8:21AM DBG Fetching latest blocks from=342012 max=342011 to=342017 +8:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342017,"MaxBlockRetrieved":342017,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342022 PeerCount=6 +8:21AM DBG Fetching latest blocks from=342018 max=342017 to=342022 +8:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342022,"MaxBlockRetrieved":342022,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342028 PeerCount=6 +8:21AM DBG Fetching latest blocks from=342023 max=342022 to=342028 +8:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342028,"MaxBlockRetrieved":342028,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342033 PeerCount=6 +8:21AM DBG Fetching latest blocks from=342029 max=342028 to=342033 +8:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342033,"MaxBlockRetrieved":342033,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342038 PeerCount=6 +8:21AM DBG Fetching latest blocks from=342034 max=342033 to=342038 +8:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342038,"MaxBlockRetrieved":342038,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342044 PeerCount=6 +8:21AM DBG Fetching latest blocks from=342039 max=342038 to=342044 +8:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342044,"MaxBlockRetrieved":342038,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342049 PeerCount=6 +8:21AM DBG Fetching latest blocks from=342045 max=342044 to=342049 +8:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342049,"MaxBlockRetrieved":342049,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342054 PeerCount=6 +8:21AM DBG Fetching latest blocks from=342050 max=342049 to=342054 +8:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342054,"MaxBlockRetrieved":342049,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342060 PeerCount=6 +8:21AM DBG Fetching latest blocks from=342055 max=342054 to=342060 +8:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342060,"MaxBlockRetrieved":342060,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342065 PeerCount=6 +8:21AM DBG Fetching latest blocks from=342061 max=342060 to=342065 +8:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342065,"MaxBlockRetrieved":342065,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342071 PeerCount=6 +8:21AM DBG Fetching latest blocks from=342066 max=342065 to=342071 +8:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342071,"MaxBlockRetrieved":342071,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342076 PeerCount=6 +8:22AM DBG Fetching latest blocks from=342072 max=342071 to=342076 +8:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342076,"MaxBlockRetrieved":342076,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342081 PeerCount=6 +8:22AM DBG Fetching latest blocks from=342077 max=342076 to=342081 +8:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342081,"MaxBlockRetrieved":342081,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342087 PeerCount=6 +8:22AM DBG Fetching latest blocks from=342082 max=342081 to=342087 +8:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342087,"MaxBlockRetrieved":342087,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342092 PeerCount=6 +8:22AM DBG Fetching latest blocks from=342088 max=342087 to=342092 +8:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342092,"MaxBlockRetrieved":342092,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342097 PeerCount=6 +8:22AM DBG Fetching latest blocks from=342093 max=342092 to=342097 +8:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342097,"MaxBlockRetrieved":342097,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342103 PeerCount=6 +8:22AM DBG Fetching latest blocks from=342098 max=342097 to=342103 +8:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342103,"MaxBlockRetrieved":342103,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342108 PeerCount=6 +8:22AM DBG Fetching latest blocks from=342104 max=342103 to=342108 +8:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342108,"MaxBlockRetrieved":342108,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342114 PeerCount=6 +8:22AM DBG Fetching latest blocks from=342109 max=342108 to=342114 +8:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342114,"MaxBlockRetrieved":342114,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342119 PeerCount=6 +8:22AM DBG Fetching latest blocks from=342115 max=342114 to=342119 +8:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342119,"MaxBlockRetrieved":342119,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342124 PeerCount=6 +8:22AM DBG Fetching latest blocks from=342120 max=342119 to=342124 +8:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342124,"MaxBlockRetrieved":342124,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342130 PeerCount=6 +8:22AM DBG Fetching latest blocks from=342125 max=342124 to=342130 +8:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342130,"MaxBlockRetrieved":342130,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342135 PeerCount=6 +8:23AM DBG Fetching latest blocks from=342131 max=342130 to=342135 +8:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342135,"MaxBlockRetrieved":342130,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342141 PeerCount=6 +8:23AM DBG Fetching latest blocks from=342136 max=342135 to=342141 +8:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342141,"MaxBlockRetrieved":342141,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342146 PeerCount=6 +8:23AM DBG Fetching latest blocks from=342142 max=342141 to=342146 +8:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342146,"MaxBlockRetrieved":342146,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342151 PeerCount=6 +8:23AM DBG Fetching latest blocks from=342147 max=342146 to=342151 +8:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342151,"MaxBlockRetrieved":342151,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342157 PeerCount=6 +8:23AM DBG Fetching latest blocks from=342152 max=342151 to=342157 +8:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342157,"MaxBlockRetrieved":342157,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342162 PeerCount=6 +8:23AM DBG Fetching latest blocks from=342158 max=342157 to=342162 +8:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342162,"MaxBlockRetrieved":342162,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342167 PeerCount=6 +8:23AM DBG Fetching latest blocks from=342163 max=342162 to=342167 +8:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342167,"MaxBlockRetrieved":342167,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342173 PeerCount=6 +8:23AM DBG Fetching latest blocks from=342168 max=342167 to=342173 +8:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342173,"MaxBlockRetrieved":342173,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342178 PeerCount=6 +8:23AM DBG Fetching latest blocks from=342174 max=342173 to=342178 +8:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342178,"MaxBlockRetrieved":342178,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342184 PeerCount=6 +8:23AM DBG Fetching latest blocks from=342179 max=342178 to=342184 +8:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342184,"MaxBlockRetrieved":342184,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342189 PeerCount=6 +8:24AM DBG Fetching latest blocks from=342185 max=342184 to=342189 +8:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342189,"MaxBlockRetrieved":342189,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342194 PeerCount=6 +8:24AM DBG Fetching latest blocks from=342190 max=342189 to=342194 +8:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342194,"MaxBlockRetrieved":342194,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342200 PeerCount=6 +8:24AM DBG Fetching latest blocks from=342195 max=342194 to=342200 +8:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342200,"MaxBlockRetrieved":342200,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342205 PeerCount=6 +8:24AM DBG Fetching latest blocks from=342201 max=342200 to=342205 +8:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342205,"MaxBlockRetrieved":342200,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342211 PeerCount=6 +8:24AM DBG Fetching latest blocks from=342206 max=342205 to=342211 +8:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342211,"MaxBlockRetrieved":342211,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342216 PeerCount=6 +8:24AM DBG Fetching latest blocks from=342212 max=342211 to=342216 +8:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342216,"MaxBlockRetrieved":342211,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342221 PeerCount=6 +8:24AM DBG Fetching latest blocks from=342217 max=342216 to=342221 +8:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342221,"MaxBlockRetrieved":342221,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342227 PeerCount=6 +8:24AM DBG Fetching latest blocks from=342222 max=342221 to=342227 +8:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342227,"MaxBlockRetrieved":342227,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342232 PeerCount=6 +8:24AM DBG Fetching latest blocks from=342228 max=342227 to=342232 +8:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342232,"MaxBlockRetrieved":342232,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342238 PeerCount=6 +8:24AM DBG Fetching latest blocks from=342233 max=342232 to=342238 +8:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342238,"MaxBlockRetrieved":342238,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342243 PeerCount=6 +8:24AM DBG Fetching latest blocks from=342239 max=342238 to=342243 +8:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342243,"MaxBlockRetrieved":342243,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342248 PeerCount=6 +8:25AM DBG Fetching latest blocks from=342244 max=342243 to=342248 +8:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342248,"MaxBlockRetrieved":342248,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342254 PeerCount=6 +8:25AM DBG Fetching latest blocks from=342249 max=342248 to=342254 +8:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342254,"MaxBlockRetrieved":342254,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342259 PeerCount=6 +8:25AM DBG Fetching latest blocks from=342255 max=342254 to=342259 +8:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342259,"MaxBlockRetrieved":342259,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342264 PeerCount=6 +8:25AM DBG Fetching latest blocks from=342260 max=342259 to=342264 +8:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342264,"MaxBlockRetrieved":342264,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342270 PeerCount=6 +8:25AM DBG Fetching latest blocks from=342265 max=342264 to=342270 +8:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342270,"MaxBlockRetrieved":342270,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342275 PeerCount=6 +8:25AM DBG Fetching latest blocks from=342271 max=342270 to=342275 +8:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342275,"MaxBlockRetrieved":342275,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342281 PeerCount=6 +8:25AM DBG Fetching latest blocks from=342276 max=342275 to=342281 +8:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342281,"MaxBlockRetrieved":342281,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342286 PeerCount=6 +8:25AM DBG Fetching latest blocks from=342282 max=342281 to=342286 +8:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342286,"MaxBlockRetrieved":342281,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342291 PeerCount=6 +8:25AM DBG Fetching latest blocks from=342287 max=342286 to=342291 +8:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342291,"MaxBlockRetrieved":342291,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342297 PeerCount=6 +8:25AM DBG Fetching latest blocks from=342292 max=342291 to=342297 +8:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342297,"MaxBlockRetrieved":342297,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342302 PeerCount=6 +8:25AM DBG Fetching latest blocks from=342298 max=342297 to=342302 +8:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342302,"MaxBlockRetrieved":342302,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342308 PeerCount=6 +8:26AM DBG Fetching latest blocks from=342303 max=342302 to=342308 +8:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342308,"MaxBlockRetrieved":342308,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342313 PeerCount=6 +8:26AM DBG Fetching latest blocks from=342309 max=342308 to=342313 +8:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342313,"MaxBlockRetrieved":342313,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342318 PeerCount=6 +8:26AM DBG Fetching latest blocks from=342314 max=342313 to=342318 +8:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342318,"MaxBlockRetrieved":342318,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342324 PeerCount=6 +8:26AM DBG Fetching latest blocks from=342319 max=342318 to=342324 +8:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342324,"MaxBlockRetrieved":342324,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342329 PeerCount=6 +8:26AM DBG Fetching latest blocks from=342325 max=342324 to=342329 +8:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342329,"MaxBlockRetrieved":342329,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342335 PeerCount=6 +8:26AM DBG Fetching latest blocks from=342330 max=342329 to=342335 +8:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342335,"MaxBlockRetrieved":342335,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342340 PeerCount=6 +8:26AM DBG Fetching latest blocks from=342336 max=342335 to=342340 +8:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342340,"MaxBlockRetrieved":342340,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342345 PeerCount=6 +8:26AM DBG Fetching latest blocks from=342341 max=342340 to=342345 +8:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342345,"MaxBlockRetrieved":342340,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342351 PeerCount=6 +8:26AM DBG Fetching latest blocks from=342346 max=342345 to=342351 +8:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342351,"MaxBlockRetrieved":342351,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342356 PeerCount=6 +8:26AM DBG Fetching latest blocks from=342352 max=342351 to=342356 +8:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342356,"MaxBlockRetrieved":342356,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342362 PeerCount=6 +8:26AM DBG Fetching latest blocks from=342357 max=342356 to=342362 +8:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342362,"MaxBlockRetrieved":342362,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342367 PeerCount=6 +8:27AM DBG Fetching latest blocks from=342363 max=342362 to=342367 +8:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342367,"MaxBlockRetrieved":342367,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342372 PeerCount=6 +8:27AM DBG Fetching latest blocks from=342368 max=342367 to=342372 +8:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342372,"MaxBlockRetrieved":342372,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342378 PeerCount=6 +8:27AM DBG Fetching latest blocks from=342373 max=342372 to=342378 +8:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342378,"MaxBlockRetrieved":342378,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342383 PeerCount=6 +8:27AM DBG Fetching latest blocks from=342379 max=342378 to=342383 +8:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342383,"MaxBlockRetrieved":342383,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342389 PeerCount=6 +8:27AM DBG Fetching latest blocks from=342384 max=342383 to=342389 +8:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342389,"MaxBlockRetrieved":342389,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342394 PeerCount=6 +8:27AM DBG Fetching latest blocks from=342390 max=342389 to=342394 +8:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342394,"MaxBlockRetrieved":342394,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342399 PeerCount=6 +8:27AM DBG Fetching latest blocks from=342395 max=342394 to=342399 +8:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342399,"MaxBlockRetrieved":342399,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342405 PeerCount=6 +8:27AM DBG Fetching latest blocks from=342400 max=342399 to=342405 +8:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342405,"MaxBlockRetrieved":342399,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342410 PeerCount=6 +8:27AM DBG Fetching latest blocks from=342406 max=342405 to=342410 +8:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342410,"MaxBlockRetrieved":342410,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342416 PeerCount=6 +8:27AM DBG Fetching latest blocks from=342411 max=342410 to=342416 +8:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342416,"MaxBlockRetrieved":342410,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342421 PeerCount=6 +8:27AM DBG Fetching latest blocks from=342417 max=342416 to=342421 +8:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342421,"MaxBlockRetrieved":342421,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342426 PeerCount=6 +8:28AM DBG Fetching latest blocks from=342422 max=342421 to=342426 +8:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342426,"MaxBlockRetrieved":342426,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342432 PeerCount=6 +8:28AM DBG Fetching latest blocks from=342427 max=342426 to=342432 +8:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342432,"MaxBlockRetrieved":342432,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342437 PeerCount=6 +8:28AM DBG Fetching latest blocks from=342433 max=342432 to=342437 +8:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342437,"MaxBlockRetrieved":342437,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342443 PeerCount=6 +8:28AM DBG Fetching latest blocks from=342438 max=342437 to=342443 +8:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342443,"MaxBlockRetrieved":342443,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342448 PeerCount=6 +8:28AM DBG Fetching latest blocks from=342444 max=342443 to=342448 +8:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342448,"MaxBlockRetrieved":342448,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342453 PeerCount=6 +8:28AM DBG Fetching latest blocks from=342449 max=342448 to=342453 +8:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342453,"MaxBlockRetrieved":342453,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342459 PeerCount=6 +8:28AM DBG Fetching latest blocks from=342454 max=342453 to=342459 +8:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342459,"MaxBlockRetrieved":342459,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342464 PeerCount=6 +8:28AM DBG Fetching latest blocks from=342460 max=342459 to=342464 +8:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342464,"MaxBlockRetrieved":342464,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342469 PeerCount=6 +8:28AM DBG Fetching latest blocks from=342465 max=342464 to=342469 +8:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342469,"MaxBlockRetrieved":342469,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342475 PeerCount=6 +8:28AM DBG Fetching latest blocks from=342470 max=342469 to=342475 +8:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342475,"MaxBlockRetrieved":342469,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342480 PeerCount=6 +8:28AM DBG Fetching latest blocks from=342476 max=342475 to=342480 +8:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342480,"MaxBlockRetrieved":342480,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342486 PeerCount=6 +8:29AM DBG Fetching latest blocks from=342481 max=342480 to=342486 +8:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342486,"MaxBlockRetrieved":342486,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342491 PeerCount=6 +8:29AM DBG Fetching latest blocks from=342487 max=342486 to=342491 +8:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342491,"MaxBlockRetrieved":342491,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342496 PeerCount=6 +8:29AM DBG Fetching latest blocks from=342492 max=342491 to=342496 +8:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342496,"MaxBlockRetrieved":342496,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342502 PeerCount=6 +8:29AM DBG Fetching latest blocks from=342497 max=342496 to=342502 +8:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342502,"MaxBlockRetrieved":342502,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342507 PeerCount=6 +8:29AM DBG Fetching latest blocks from=342503 max=342502 to=342507 +8:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342507,"MaxBlockRetrieved":342507,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342513 PeerCount=6 +8:29AM DBG Fetching latest blocks from=342508 max=342507 to=342513 +8:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342513,"MaxBlockRetrieved":342513,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342518 PeerCount=6 +8:29AM DBG Fetching latest blocks from=342514 max=342513 to=342518 +8:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342518,"MaxBlockRetrieved":342518,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342523 PeerCount=6 +8:29AM DBG Fetching latest blocks from=342519 max=342518 to=342523 +8:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342523,"MaxBlockRetrieved":342523,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342529 PeerCount=6 +8:29AM DBG Fetching latest blocks from=342524 max=342523 to=342529 +8:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342529,"MaxBlockRetrieved":342529,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342534 PeerCount=6 +8:29AM DBG Fetching latest blocks from=342530 max=342529 to=342534 +8:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342534,"MaxBlockRetrieved":342529,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342540 PeerCount=6 +8:30AM DBG Fetching latest blocks from=342535 max=342534 to=342540 +8:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342540,"MaxBlockRetrieved":342540,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342545 PeerCount=6 +8:30AM DBG Fetching latest blocks from=342541 max=342540 to=342545 +8:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342545,"MaxBlockRetrieved":342540,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342550 PeerCount=6 +8:30AM DBG Fetching latest blocks from=342546 max=342545 to=342550 +8:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342550,"MaxBlockRetrieved":342550,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342556 PeerCount=6 +8:30AM DBG Fetching latest blocks from=342551 max=342550 to=342556 +8:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342556,"MaxBlockRetrieved":342556,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342561 PeerCount=6 +8:30AM DBG Fetching latest blocks from=342557 max=342556 to=342561 +8:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342561,"MaxBlockRetrieved":342561,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342566 PeerCount=6 +8:30AM DBG Fetching latest blocks from=342562 max=342561 to=342566 +8:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342566,"MaxBlockRetrieved":342566,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342572 PeerCount=6 +8:30AM DBG Fetching latest blocks from=342567 max=342566 to=342572 +8:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342572,"MaxBlockRetrieved":342572,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342577 PeerCount=6 +8:30AM DBG Fetching latest blocks from=342573 max=342572 to=342577 +8:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342577,"MaxBlockRetrieved":342577,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342583 PeerCount=6 +8:30AM DBG Fetching latest blocks from=342578 max=342577 to=342583 +8:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342583,"MaxBlockRetrieved":342583,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342588 PeerCount=6 +8:30AM DBG Fetching latest blocks from=342584 max=342583 to=342588 +8:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342588,"MaxBlockRetrieved":342588,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342593 PeerCount=6 +8:30AM DBG Fetching latest blocks from=342589 max=342588 to=342593 +8:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342593,"MaxBlockRetrieved":342593,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342599 PeerCount=6 +8:31AM DBG Fetching latest blocks from=342594 max=342593 to=342599 +8:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342599,"MaxBlockRetrieved":342599,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342604 PeerCount=6 +8:31AM DBG Fetching latest blocks from=342600 max=342599 to=342604 +8:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342604,"MaxBlockRetrieved":342604,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342610 PeerCount=6 +8:31AM DBG Fetching latest blocks from=342605 max=342604 to=342610 +8:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342610,"MaxBlockRetrieved":342610,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342615 PeerCount=6 +8:31AM DBG Fetching latest blocks from=342611 max=342610 to=342615 +8:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342615,"MaxBlockRetrieved":342610,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342620 PeerCount=6 +8:31AM DBG Fetching latest blocks from=342616 max=342615 to=342620 +8:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342620,"MaxBlockRetrieved":342620,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342626 PeerCount=6 +8:31AM DBG Fetching latest blocks from=342621 max=342620 to=342626 +8:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342626,"MaxBlockRetrieved":342620,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342631 PeerCount=6 +8:31AM DBG Fetching latest blocks from=342627 max=342626 to=342631 +8:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342631,"MaxBlockRetrieved":342631,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342636 PeerCount=6 +8:31AM DBG Fetching latest blocks from=342632 max=342631 to=342636 +8:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342636,"MaxBlockRetrieved":342636,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342642 PeerCount=6 +8:31AM DBG Fetching latest blocks from=342637 max=342636 to=342642 +8:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342642,"MaxBlockRetrieved":342642,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342647 PeerCount=6 +8:31AM DBG Fetching latest blocks from=342643 max=342642 to=342647 +8:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342647,"MaxBlockRetrieved":342647,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342653 PeerCount=6 +8:31AM DBG Fetching latest blocks from=342648 max=342647 to=342653 +8:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342653,"MaxBlockRetrieved":342653,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342658 PeerCount=6 +8:32AM DBG Fetching latest blocks from=342654 max=342653 to=342658 +8:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342658,"MaxBlockRetrieved":342658,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342663 PeerCount=6 +8:32AM DBG Fetching latest blocks from=342659 max=342658 to=342663 +8:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342663,"MaxBlockRetrieved":342663,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342669 PeerCount=6 +8:32AM DBG Fetching latest blocks from=342664 max=342663 to=342669 +8:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342669,"MaxBlockRetrieved":342669,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342674 PeerCount=6 +8:32AM DBG Fetching latest blocks from=342670 max=342669 to=342674 +8:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342674,"MaxBlockRetrieved":342674,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342680 PeerCount=6 +8:32AM DBG Fetching latest blocks from=342675 max=342674 to=342680 +8:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342680,"MaxBlockRetrieved":342680,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342685 PeerCount=6 +8:32AM DBG Fetching latest blocks from=342681 max=342680 to=342685 +8:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342685,"MaxBlockRetrieved":342685,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342690 PeerCount=6 +8:32AM DBG Fetching latest blocks from=342686 max=342685 to=342690 +8:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342690,"MaxBlockRetrieved":342690,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342696 PeerCount=6 +8:32AM DBG Fetching latest blocks from=342691 max=342690 to=342696 +8:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342696,"MaxBlockRetrieved":342690,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342701 PeerCount=6 +8:32AM DBG Fetching latest blocks from=342697 max=342696 to=342701 +8:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342701,"MaxBlockRetrieved":342701,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342706 PeerCount=6 +8:32AM DBG Fetching latest blocks from=342702 max=342701 to=342706 +8:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342706,"MaxBlockRetrieved":342701,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342712 PeerCount=6 +8:32AM DBG Fetching latest blocks from=342707 max=342706 to=342712 +8:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342712,"MaxBlockRetrieved":342712,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342717 PeerCount=6 +8:33AM DBG Fetching latest blocks from=342713 max=342712 to=342717 +8:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342717,"MaxBlockRetrieved":342717,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342723 PeerCount=6 +8:33AM DBG Fetching latest blocks from=342718 max=342717 to=342723 +8:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342723,"MaxBlockRetrieved":342723,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342728 PeerCount=6 +8:33AM DBG Fetching latest blocks from=342724 max=342723 to=342728 +8:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342728,"MaxBlockRetrieved":342728,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342733 PeerCount=6 +8:33AM DBG Fetching latest blocks from=342729 max=342728 to=342733 +8:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342733,"MaxBlockRetrieved":342733,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342739 PeerCount=6 +8:33AM DBG Fetching latest blocks from=342734 max=342733 to=342739 +8:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342739,"MaxBlockRetrieved":342739,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342744 PeerCount=6 +8:33AM DBG Fetching latest blocks from=342740 max=342739 to=342744 +8:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342744,"MaxBlockRetrieved":342744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342750 PeerCount=6 +8:33AM DBG Fetching latest blocks from=342745 max=342744 to=342750 +8:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342750,"MaxBlockRetrieved":342750,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342755 PeerCount=6 +8:33AM DBG Fetching latest blocks from=342751 max=342750 to=342755 +8:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342755,"MaxBlockRetrieved":342755,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342760 PeerCount=6 +8:33AM DBG Fetching latest blocks from=342756 max=342755 to=342760 +8:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342760,"MaxBlockRetrieved":342760,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342766 PeerCount=6 +8:33AM DBG Fetching latest blocks from=342761 max=342760 to=342766 +8:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342766,"MaxBlockRetrieved":342766,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342771 PeerCount=6 +8:33AM DBG Fetching latest blocks from=342767 max=342766 to=342771 +8:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342771,"MaxBlockRetrieved":342771,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342776 PeerCount=6 +8:34AM DBG Fetching latest blocks from=342772 max=342771 to=342776 +8:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342776,"MaxBlockRetrieved":342776,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342782 PeerCount=6 +8:34AM DBG Fetching latest blocks from=342777 max=342776 to=342782 +8:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342782,"MaxBlockRetrieved":342782,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342787 PeerCount=6 +8:34AM DBG Fetching latest blocks from=342783 max=342782 to=342787 +8:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342787,"MaxBlockRetrieved":342787,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342793 PeerCount=6 +8:34AM DBG Fetching latest blocks from=342788 max=342787 to=342793 +8:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342793,"MaxBlockRetrieved":342793,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342798 PeerCount=6 +8:34AM DBG Fetching latest blocks from=342794 max=342793 to=342798 +8:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342798,"MaxBlockRetrieved":342793,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342803 PeerCount=6 +8:34AM DBG Fetching latest blocks from=342799 max=342798 to=342803 +8:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342803,"MaxBlockRetrieved":342803,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342809 PeerCount=6 +8:34AM DBG Fetching latest blocks from=342804 max=342803 to=342809 +8:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342809,"MaxBlockRetrieved":342809,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342814 PeerCount=6 +8:34AM DBG Fetching latest blocks from=342810 max=342809 to=342814 +8:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342814,"MaxBlockRetrieved":342814,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342819 PeerCount=6 +8:34AM DBG Fetching latest blocks from=342815 max=342814 to=342819 +8:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342819,"MaxBlockRetrieved":342819,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342825 PeerCount=6 +8:34AM DBG Fetching latest blocks from=342820 max=342819 to=342825 +8:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342825,"MaxBlockRetrieved":342825,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342830 PeerCount=6 +8:34AM DBG Fetching latest blocks from=342826 max=342825 to=342830 +8:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342830,"MaxBlockRetrieved":342830,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342836 PeerCount=6 +8:35AM DBG Fetching latest blocks from=342831 max=342830 to=342836 +8:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342836,"MaxBlockRetrieved":342836,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342841 PeerCount=6 +8:35AM DBG Fetching latest blocks from=342837 max=342836 to=342841 +8:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342841,"MaxBlockRetrieved":342841,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342846 PeerCount=6 +8:35AM DBG Fetching latest blocks from=342842 max=342841 to=342846 +8:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342846,"MaxBlockRetrieved":342846,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342852 PeerCount=6 +8:35AM DBG Fetching latest blocks from=342847 max=342846 to=342852 +8:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342852,"MaxBlockRetrieved":342852,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342857 PeerCount=6 +8:35AM DBG Fetching latest blocks from=342853 max=342852 to=342857 +8:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342857,"MaxBlockRetrieved":342857,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342863 PeerCount=6 +8:35AM DBG Fetching latest blocks from=342858 max=342857 to=342863 +8:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342863,"MaxBlockRetrieved":342863,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342868 PeerCount=6 +8:35AM DBG Fetching latest blocks from=342864 max=342863 to=342868 +8:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342868,"MaxBlockRetrieved":342868,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342873 PeerCount=6 +8:35AM DBG Fetching latest blocks from=342869 max=342868 to=342873 +8:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342873,"MaxBlockRetrieved":342873,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342879 PeerCount=6 +8:35AM DBG Fetching latest blocks from=342874 max=342873 to=342879 +8:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342879,"MaxBlockRetrieved":342873,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342884 PeerCount=6 +8:35AM DBG Fetching latest blocks from=342880 max=342879 to=342884 +8:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342884,"MaxBlockRetrieved":342884,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342890 PeerCount=6 +8:35AM DBG Fetching latest blocks from=342885 max=342884 to=342890 +8:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342890,"MaxBlockRetrieved":342890,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342895 PeerCount=6 +8:36AM DBG Fetching latest blocks from=342891 max=342890 to=342895 +8:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342895,"MaxBlockRetrieved":342895,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342900 PeerCount=6 +8:36AM DBG Fetching latest blocks from=342896 max=342895 to=342900 +8:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342900,"MaxBlockRetrieved":342900,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342906 PeerCount=6 +8:36AM DBG Fetching latest blocks from=342901 max=342900 to=342906 +8:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342906,"MaxBlockRetrieved":342906,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342911 PeerCount=6 +8:36AM DBG Fetching latest blocks from=342907 max=342906 to=342911 +8:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342911,"MaxBlockRetrieved":342911,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342916 PeerCount=6 +8:36AM DBG Fetching latest blocks from=342912 max=342911 to=342916 +8:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342916,"MaxBlockRetrieved":342916,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342922 PeerCount=6 +8:36AM DBG Fetching latest blocks from=342917 max=342916 to=342922 +8:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342922,"MaxBlockRetrieved":342922,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342927 PeerCount=6 +8:36AM DBG Fetching latest blocks from=342923 max=342922 to=342927 +8:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342927,"MaxBlockRetrieved":342927,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342933 PeerCount=6 +8:36AM DBG Fetching latest blocks from=342928 max=342927 to=342933 +8:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342933,"MaxBlockRetrieved":342933,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342938 PeerCount=6 +8:36AM DBG Fetching latest blocks from=342934 max=342933 to=342938 +8:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342938,"MaxBlockRetrieved":342938,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342943 PeerCount=6 +8:36AM DBG Fetching latest blocks from=342939 max=342938 to=342943 +8:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342943,"MaxBlockRetrieved":342943,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342949 PeerCount=6 +8:37AM DBG Fetching latest blocks from=342944 max=342943 to=342949 +8:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342949,"MaxBlockRetrieved":342949,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342954 PeerCount=6 +8:37AM DBG Fetching latest blocks from=342950 max=342949 to=342954 +8:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342954,"MaxBlockRetrieved":342954,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342960 PeerCount=6 +8:37AM DBG Fetching latest blocks from=342955 max=342954 to=342960 +8:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342960,"MaxBlockRetrieved":342954,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342965 PeerCount=6 +8:37AM DBG Fetching latest blocks from=342961 max=342960 to=342965 +8:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342965,"MaxBlockRetrieved":342965,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342970 PeerCount=6 +8:37AM DBG Fetching latest blocks from=342966 max=342965 to=342970 +8:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342970,"MaxBlockRetrieved":342970,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342976 PeerCount=6 +8:37AM DBG Fetching latest blocks from=342971 max=342970 to=342976 +8:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342976,"MaxBlockRetrieved":342976,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342981 PeerCount=6 +8:37AM DBG Fetching latest blocks from=342977 max=342976 to=342981 +8:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342981,"MaxBlockRetrieved":342981,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342986 PeerCount=6 +8:37AM DBG Fetching latest blocks from=342982 max=342981 to=342986 +8:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342986,"MaxBlockRetrieved":342986,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342992 PeerCount=6 +8:37AM DBG Fetching latest blocks from=342987 max=342986 to=342992 +8:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342992,"MaxBlockRetrieved":342992,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=342997 PeerCount=6 +8:37AM DBG Fetching latest blocks from=342993 max=342992 to=342997 +8:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":342997,"MaxBlockRetrieved":342997,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343003 PeerCount=6 +8:37AM DBG Fetching latest blocks from=342998 max=342997 to=343003 +8:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343003,"MaxBlockRetrieved":343003,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343008 PeerCount=6 +8:38AM DBG Fetching latest blocks from=343004 max=343003 to=343008 +8:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343008,"MaxBlockRetrieved":343008,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343013 PeerCount=6 +8:38AM DBG Fetching latest blocks from=343009 max=343008 to=343013 +8:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343013,"MaxBlockRetrieved":343013,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343019 PeerCount=6 +8:38AM DBG Fetching latest blocks from=343014 max=343013 to=343019 +8:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343019,"MaxBlockRetrieved":343019,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343024 PeerCount=6 +8:38AM DBG Fetching latest blocks from=343020 max=343019 to=343024 +8:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343024,"MaxBlockRetrieved":343024,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343029 PeerCount=6 +8:38AM DBG Fetching latest blocks from=343025 max=343024 to=343029 +8:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343029,"MaxBlockRetrieved":343029,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343035 PeerCount=6 +8:38AM DBG Fetching latest blocks from=343030 max=343029 to=343035 +8:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343035,"MaxBlockRetrieved":343035,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343040 PeerCount=6 +8:38AM DBG Fetching latest blocks from=343036 max=343035 to=343040 +8:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343040,"MaxBlockRetrieved":343035,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343046 PeerCount=6 +8:38AM DBG Fetching latest blocks from=343041 max=343040 to=343046 +8:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343046,"MaxBlockRetrieved":343046,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343051 PeerCount=6 +8:38AM DBG Fetching latest blocks from=343047 max=343046 to=343051 +8:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343051,"MaxBlockRetrieved":343051,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343056 PeerCount=6 +8:38AM DBG Fetching latest blocks from=343052 max=343051 to=343056 +8:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343056,"MaxBlockRetrieved":343056,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343062 PeerCount=6 +8:38AM DBG Fetching latest blocks from=343057 max=343056 to=343062 +8:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343062,"MaxBlockRetrieved":343062,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343068 PeerCount=6 +8:39AM DBG Fetching latest blocks from=343063 max=343062 to=343068 +8:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343068,"MaxBlockRetrieved":343068,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343073 PeerCount=6 +8:39AM DBG Fetching latest blocks from=343069 max=343068 to=343073 +8:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343073,"MaxBlockRetrieved":343073,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343079 PeerCount=6 +8:39AM DBG Fetching latest blocks from=343074 max=343073 to=343079 +8:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343079,"MaxBlockRetrieved":343079,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343085 PeerCount=6 +8:39AM DBG Fetching latest blocks from=343080 max=343079 to=343085 +8:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343085,"MaxBlockRetrieved":343085,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343090 PeerCount=6 +8:39AM DBG Fetching latest blocks from=343086 max=343085 to=343090 +8:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343090,"MaxBlockRetrieved":343090,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343096 PeerCount=6 +8:39AM DBG Fetching latest blocks from=343091 max=343090 to=343096 +8:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343096,"MaxBlockRetrieved":343096,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343101 PeerCount=6 +8:39AM DBG Fetching latest blocks from=343097 max=343096 to=343101 +8:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343101,"MaxBlockRetrieved":343101,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343106 PeerCount=6 +8:39AM DBG Fetching latest blocks from=343102 max=343101 to=343106 +8:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343106,"MaxBlockRetrieved":343106,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343112 PeerCount=6 +8:39AM DBG Fetching latest blocks from=343107 max=343106 to=343112 +8:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343112,"MaxBlockRetrieved":343112,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343117 PeerCount=6 +8:39AM DBG Fetching latest blocks from=343113 max=343112 to=343117 +8:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343117,"MaxBlockRetrieved":343117,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343122 PeerCount=6 +8:39AM DBG Fetching latest blocks from=343118 max=343117 to=343122 +8:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343122,"MaxBlockRetrieved":343122,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343128 PeerCount=6 +8:40AM DBG Fetching latest blocks from=343123 max=343122 to=343128 +8:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343128,"MaxBlockRetrieved":343122,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343133 PeerCount=6 +8:40AM DBG Fetching latest blocks from=343129 max=343128 to=343133 +8:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343133,"MaxBlockRetrieved":343133,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343139 PeerCount=6 +8:40AM DBG Fetching latest blocks from=343134 max=343133 to=343139 +8:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343139,"MaxBlockRetrieved":343139,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343144 PeerCount=6 +8:40AM DBG Fetching latest blocks from=343140 max=343139 to=343144 +8:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343144,"MaxBlockRetrieved":343144,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343149 PeerCount=6 +8:40AM DBG Fetching latest blocks from=343145 max=343144 to=343149 +8:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343149,"MaxBlockRetrieved":343149,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343155 PeerCount=6 +8:40AM DBG Fetching latest blocks from=343150 max=343149 to=343155 +8:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343155,"MaxBlockRetrieved":343155,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343160 PeerCount=6 +8:40AM DBG Fetching latest blocks from=343156 max=343155 to=343160 +8:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343160,"MaxBlockRetrieved":343160,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343166 PeerCount=6 +8:40AM DBG Fetching latest blocks from=343161 max=343160 to=343166 +8:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343166,"MaxBlockRetrieved":343166,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343171 PeerCount=6 +8:40AM DBG Fetching latest blocks from=343167 max=343166 to=343171 +8:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343171,"MaxBlockRetrieved":343171,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343176 PeerCount=6 +8:40AM DBG Fetching latest blocks from=343172 max=343171 to=343176 +8:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343176,"MaxBlockRetrieved":343176,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343182 PeerCount=6 +8:41AM DBG Fetching latest blocks from=343177 max=343176 to=343182 +8:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343182,"MaxBlockRetrieved":343182,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343187 PeerCount=6 +8:41AM DBG Fetching latest blocks from=343183 max=343182 to=343187 +8:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343187,"MaxBlockRetrieved":343187,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343192 PeerCount=6 +8:41AM DBG Fetching latest blocks from=343188 max=343187 to=343192 +8:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343192,"MaxBlockRetrieved":343192,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343198 PeerCount=6 +8:41AM DBG Fetching latest blocks from=343193 max=343192 to=343198 +8:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343198,"MaxBlockRetrieved":343198,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343203 PeerCount=6 +8:41AM DBG Fetching latest blocks from=343199 max=343198 to=343203 +8:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343203,"MaxBlockRetrieved":343203,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343209 PeerCount=6 +8:41AM DBG Fetching latest blocks from=343204 max=343203 to=343209 +8:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343209,"MaxBlockRetrieved":343203,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343214 PeerCount=6 +8:41AM DBG Fetching latest blocks from=343210 max=343209 to=343214 +8:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343214,"MaxBlockRetrieved":343214,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343219 PeerCount=6 +8:41AM DBG Fetching latest blocks from=343215 max=343214 to=343219 +8:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343219,"MaxBlockRetrieved":343214,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343225 PeerCount=6 +8:41AM DBG Fetching latest blocks from=343220 max=343219 to=343225 +8:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343225,"MaxBlockRetrieved":343225,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343230 PeerCount=6 +8:41AM DBG Fetching latest blocks from=343226 max=343225 to=343230 +8:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343230,"MaxBlockRetrieved":343230,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343236 PeerCount=6 +8:41AM DBG Fetching latest blocks from=343231 max=343230 to=343236 +8:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343236,"MaxBlockRetrieved":343236,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343241 PeerCount=6 +8:42AM DBG Fetching latest blocks from=343237 max=343236 to=343241 +8:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343241,"MaxBlockRetrieved":343241,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343246 PeerCount=6 +8:42AM DBG Fetching latest blocks from=343242 max=343241 to=343246 +8:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343246,"MaxBlockRetrieved":343246,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343252 PeerCount=6 +8:42AM DBG Fetching latest blocks from=343247 max=343246 to=343252 +8:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343252,"MaxBlockRetrieved":343252,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343257 PeerCount=6 +8:42AM DBG Fetching latest blocks from=343253 max=343252 to=343257 +8:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343257,"MaxBlockRetrieved":343257,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343262 PeerCount=6 +8:42AM DBG Fetching latest blocks from=343258 max=343257 to=343262 +8:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343262,"MaxBlockRetrieved":343262,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343268 PeerCount=6 +8:42AM DBG Fetching latest blocks from=343263 max=343262 to=343268 +8:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343268,"MaxBlockRetrieved":343268,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343273 PeerCount=6 +8:42AM DBG Fetching latest blocks from=343269 max=343268 to=343273 +8:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343273,"MaxBlockRetrieved":343273,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343279 PeerCount=6 +8:42AM DBG Fetching latest blocks from=343274 max=343273 to=343279 +8:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343279,"MaxBlockRetrieved":343279,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343284 PeerCount=6 +8:42AM DBG Fetching latest blocks from=343280 max=343279 to=343284 +8:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343284,"MaxBlockRetrieved":343284,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343289 PeerCount=6 +8:42AM DBG Fetching latest blocks from=343285 max=343284 to=343289 +8:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343289,"MaxBlockRetrieved":343284,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343295 PeerCount=6 +8:42AM DBG Fetching latest blocks from=343290 max=343289 to=343295 +8:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343295,"MaxBlockRetrieved":343295,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343300 PeerCount=6 +8:43AM DBG Fetching latest blocks from=343296 max=343295 to=343300 +8:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343300,"MaxBlockRetrieved":343300,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343306 PeerCount=6 +8:43AM DBG Fetching latest blocks from=343301 max=343300 to=343306 +8:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343306,"MaxBlockRetrieved":343306,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343311 PeerCount=6 +8:43AM DBG Fetching latest blocks from=343307 max=343306 to=343311 +8:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343311,"MaxBlockRetrieved":343311,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343316 PeerCount=6 +8:43AM DBG Fetching latest blocks from=343312 max=343311 to=343316 +8:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343316,"MaxBlockRetrieved":343316,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343322 PeerCount=6 +8:43AM DBG Fetching latest blocks from=343317 max=343316 to=343322 +8:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343322,"MaxBlockRetrieved":343322,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343327 PeerCount=6 +8:43AM DBG Fetching latest blocks from=343323 max=343322 to=343327 +8:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343327,"MaxBlockRetrieved":343327,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343332 PeerCount=6 +8:43AM DBG Fetching latest blocks from=343328 max=343327 to=343332 +8:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343332,"MaxBlockRetrieved":343332,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343338 PeerCount=6 +8:43AM DBG Fetching latest blocks from=343333 max=343332 to=343338 +8:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343338,"MaxBlockRetrieved":343338,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343343 PeerCount=6 +8:43AM DBG Fetching latest blocks from=343339 max=343338 to=343343 +8:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343343,"MaxBlockRetrieved":343343,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343349 PeerCount=6 +8:43AM DBG Fetching latest blocks from=343344 max=343343 to=343349 +8:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343349,"MaxBlockRetrieved":343349,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343354 PeerCount=6 +8:43AM DBG Fetching latest blocks from=343350 max=343349 to=343354 +8:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343354,"MaxBlockRetrieved":343354,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343359 PeerCount=6 +8:44AM DBG Fetching latest blocks from=343355 max=343354 to=343359 +8:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343359,"MaxBlockRetrieved":343359,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343365 PeerCount=6 +8:44AM DBG Fetching latest blocks from=343360 max=343359 to=343365 +8:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343365,"MaxBlockRetrieved":343365,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343370 PeerCount=6 +8:44AM DBG Fetching latest blocks from=343366 max=343365 to=343370 +8:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343370,"MaxBlockRetrieved":343370,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343376 PeerCount=6 +8:44AM DBG Fetching latest blocks from=343371 max=343370 to=343376 +8:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343376,"MaxBlockRetrieved":343376,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343381 PeerCount=6 +8:44AM DBG Fetching latest blocks from=343377 max=343376 to=343381 +8:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343381,"MaxBlockRetrieved":343376,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343386 PeerCount=6 +8:44AM DBG Fetching latest blocks from=343382 max=343381 to=343386 +8:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343386,"MaxBlockRetrieved":343386,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343392 PeerCount=6 +8:44AM DBG Fetching latest blocks from=343387 max=343386 to=343392 +8:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343392,"MaxBlockRetrieved":343392,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343397 PeerCount=6 +8:44AM DBG Fetching latest blocks from=343393 max=343392 to=343397 +8:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343397,"MaxBlockRetrieved":343397,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343402 PeerCount=6 +8:44AM DBG Fetching latest blocks from=343398 max=343397 to=343402 +8:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343402,"MaxBlockRetrieved":343402,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343408 PeerCount=6 +8:44AM DBG Fetching latest blocks from=343403 max=343402 to=343408 +8:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343408,"MaxBlockRetrieved":343408,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343413 PeerCount=6 +8:44AM DBG Fetching latest blocks from=343409 max=343408 to=343413 +8:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343413,"MaxBlockRetrieved":343413,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343419 PeerCount=6 +8:45AM DBG Fetching latest blocks from=343414 max=343413 to=343419 +8:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343419,"MaxBlockRetrieved":343419,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343424 PeerCount=6 +8:45AM DBG Fetching latest blocks from=343420 max=343419 to=343424 +8:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343424,"MaxBlockRetrieved":343424,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343429 PeerCount=6 +8:45AM DBG Fetching latest blocks from=343425 max=343424 to=343429 +8:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343429,"MaxBlockRetrieved":343429,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343435 PeerCount=6 +8:45AM DBG Fetching latest blocks from=343430 max=343429 to=343435 +8:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343435,"MaxBlockRetrieved":343435,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343440 PeerCount=6 +8:45AM DBG Fetching latest blocks from=343436 max=343435 to=343440 +8:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343440,"MaxBlockRetrieved":343440,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343446 PeerCount=6 +8:45AM DBG Fetching latest blocks from=343441 max=343440 to=343446 +8:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343446,"MaxBlockRetrieved":343446,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343451 PeerCount=6 +8:45AM DBG Fetching latest blocks from=343447 max=343446 to=343451 +8:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343451,"MaxBlockRetrieved":343451,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343456 PeerCount=6 +8:45AM DBG Fetching latest blocks from=343452 max=343451 to=343456 +8:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343456,"MaxBlockRetrieved":343456,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343462 PeerCount=6 +8:45AM DBG Fetching latest blocks from=343457 max=343456 to=343462 +8:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343462,"MaxBlockRetrieved":343456,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343467 PeerCount=6 +8:45AM DBG Fetching latest blocks from=343463 max=343462 to=343467 +8:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343467,"MaxBlockRetrieved":343467,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343473 PeerCount=6 +8:45AM DBG Fetching latest blocks from=343468 max=343467 to=343473 +8:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343473,"MaxBlockRetrieved":343473,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343478 PeerCount=6 +8:46AM DBG Fetching latest blocks from=343474 max=343473 to=343478 +8:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343478,"MaxBlockRetrieved":343478,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343484 PeerCount=6 +8:46AM DBG Fetching latest blocks from=343479 max=343478 to=343484 +8:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343484,"MaxBlockRetrieved":343484,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343489 PeerCount=6 +8:46AM DBG Fetching latest blocks from=343485 max=343484 to=343489 +8:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343489,"MaxBlockRetrieved":343489,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343494 PeerCount=6 +8:46AM DBG Fetching latest blocks from=343490 max=343489 to=343494 +8:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343494,"MaxBlockRetrieved":343494,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343500 PeerCount=6 +8:46AM DBG Fetching latest blocks from=343495 max=343494 to=343500 +8:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343500,"MaxBlockRetrieved":343500,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343505 PeerCount=6 +8:46AM DBG Fetching latest blocks from=343501 max=343500 to=343505 +8:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343505,"MaxBlockRetrieved":343505,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343511 PeerCount=6 +8:46AM DBG Fetching latest blocks from=343506 max=343505 to=343511 +8:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343511,"MaxBlockRetrieved":343511,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343516 PeerCount=6 +8:46AM DBG Fetching latest blocks from=343512 max=343511 to=343516 +8:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343516,"MaxBlockRetrieved":343516,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343521 PeerCount=6 +8:46AM DBG Fetching latest blocks from=343517 max=343516 to=343521 +8:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343521,"MaxBlockRetrieved":343521,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343527 PeerCount=6 +8:46AM DBG Fetching latest blocks from=343522 max=343521 to=343527 +8:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343527,"MaxBlockRetrieved":343527,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343532 PeerCount=6 +8:47AM DBG Fetching latest blocks from=343528 max=343527 to=343532 +8:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343532,"MaxBlockRetrieved":343532,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343538 PeerCount=6 +8:47AM DBG Fetching latest blocks from=343533 max=343532 to=343538 +8:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343538,"MaxBlockRetrieved":343538,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343543 PeerCount=6 +8:47AM DBG Fetching latest blocks from=343539 max=343538 to=343543 +8:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343543,"MaxBlockRetrieved":343543,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343548 PeerCount=6 +8:47AM DBG Fetching latest blocks from=343544 max=343543 to=343548 +8:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343548,"MaxBlockRetrieved":343548,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343554 PeerCount=6 +8:47AM DBG Fetching latest blocks from=343549 max=343548 to=343554 +8:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343554,"MaxBlockRetrieved":343554,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343560 PeerCount=6 +8:47AM DBG Fetching latest blocks from=343555 max=343554 to=343560 +8:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343560,"MaxBlockRetrieved":343560,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343565 PeerCount=6 +8:47AM DBG Fetching latest blocks from=343561 max=343560 to=343565 +8:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343565,"MaxBlockRetrieved":343565,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343571 PeerCount=6 +8:47AM DBG Fetching latest blocks from=343566 max=343565 to=343571 +8:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343571,"MaxBlockRetrieved":343571,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343577 PeerCount=6 +8:47AM DBG Fetching latest blocks from=343572 max=343571 to=343577 +8:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343577,"MaxBlockRetrieved":343577,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343582 PeerCount=6 +8:47AM DBG Fetching latest blocks from=343578 max=343577 to=343582 +8:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343582,"MaxBlockRetrieved":343582,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343588 PeerCount=6 +8:47AM DBG Fetching latest blocks from=343583 max=343582 to=343588 +8:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343588,"MaxBlockRetrieved":343588,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343593 PeerCount=6 +8:48AM DBG Fetching latest blocks from=343589 max=343588 to=343593 +8:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343593,"MaxBlockRetrieved":343593,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343599 PeerCount=6 +8:48AM DBG Fetching latest blocks from=343594 max=343593 to=343599 +8:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343599,"MaxBlockRetrieved":343599,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343604 PeerCount=6 +8:48AM DBG Fetching latest blocks from=343600 max=343599 to=343604 +8:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343604,"MaxBlockRetrieved":343604,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343609 PeerCount=6 +8:48AM DBG Fetching latest blocks from=343605 max=343604 to=343609 +8:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343609,"MaxBlockRetrieved":343609,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343615 PeerCount=6 +8:48AM DBG Fetching latest blocks from=343610 max=343609 to=343615 +8:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343615,"MaxBlockRetrieved":343615,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343620 PeerCount=6 +8:48AM DBG Fetching latest blocks from=343616 max=343615 to=343620 +8:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343620,"MaxBlockRetrieved":343620,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343626 PeerCount=6 +8:48AM DBG Fetching latest blocks from=343621 max=343620 to=343626 +8:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343626,"MaxBlockRetrieved":343626,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343631 PeerCount=6 +8:48AM DBG Fetching latest blocks from=343627 max=343626 to=343631 +8:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343631,"MaxBlockRetrieved":343631,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343637 PeerCount=6 +8:48AM DBG Fetching latest blocks from=343632 max=343631 to=343637 +8:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343637,"MaxBlockRetrieved":343637,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343643 PeerCount=6 +8:48AM DBG Fetching latest blocks from=343638 max=343637 to=343643 +8:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343643,"MaxBlockRetrieved":343643,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343648 PeerCount=6 +8:48AM DBG Fetching latest blocks from=343644 max=343643 to=343648 +8:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343648,"MaxBlockRetrieved":343648,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343653 PeerCount=6 +8:49AM DBG Fetching latest blocks from=343649 max=343648 to=343653 +8:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343653,"MaxBlockRetrieved":343653,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343659 PeerCount=6 +8:49AM DBG Fetching latest blocks from=343654 max=343653 to=343659 +8:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343659,"MaxBlockRetrieved":343659,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343664 PeerCount=6 +8:49AM DBG Fetching latest blocks from=343660 max=343659 to=343664 +8:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343664,"MaxBlockRetrieved":343664,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343670 PeerCount=6 +8:49AM DBG Fetching latest blocks from=343665 max=343664 to=343670 +8:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343670,"MaxBlockRetrieved":343670,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343675 PeerCount=6 +8:49AM DBG Fetching latest blocks from=343671 max=343670 to=343675 +8:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343675,"MaxBlockRetrieved":343675,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343681 PeerCount=6 +8:49AM DBG Fetching latest blocks from=343676 max=343675 to=343681 +8:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343681,"MaxBlockRetrieved":343681,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343686 PeerCount=6 +8:49AM DBG Fetching latest blocks from=343682 max=343681 to=343686 +8:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343686,"MaxBlockRetrieved":343686,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343692 PeerCount=6 +8:49AM DBG Fetching latest blocks from=343687 max=343686 to=343692 +8:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343692,"MaxBlockRetrieved":343692,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343697 PeerCount=6 +8:49AM DBG Fetching latest blocks from=343693 max=343692 to=343697 +8:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343697,"MaxBlockRetrieved":343697,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343702 PeerCount=6 +8:49AM DBG Fetching latest blocks from=343698 max=343697 to=343702 +8:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343702,"MaxBlockRetrieved":343702,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343708 PeerCount=6 +8:50AM DBG Fetching latest blocks from=343703 max=343702 to=343708 +8:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343708,"MaxBlockRetrieved":343708,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343713 PeerCount=6 +8:50AM DBG Fetching latest blocks from=343709 max=343708 to=343713 +8:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343713,"MaxBlockRetrieved":343713,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343718 PeerCount=6 +8:50AM DBG Fetching latest blocks from=343714 max=343713 to=343718 +8:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343718,"MaxBlockRetrieved":343718,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343724 PeerCount=6 +8:50AM DBG Fetching latest blocks from=343719 max=343718 to=343724 +8:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343724,"MaxBlockRetrieved":343724,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343729 PeerCount=6 +8:50AM DBG Fetching latest blocks from=343725 max=343724 to=343729 +8:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343729,"MaxBlockRetrieved":343729,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343735 PeerCount=6 +8:50AM DBG Fetching latest blocks from=343730 max=343729 to=343735 +8:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343735,"MaxBlockRetrieved":343735,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343740 PeerCount=6 +8:50AM DBG Fetching latest blocks from=343736 max=343735 to=343740 +8:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343740,"MaxBlockRetrieved":343740,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343745 PeerCount=6 +8:50AM DBG Fetching latest blocks from=343741 max=343740 to=343745 +8:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343745,"MaxBlockRetrieved":343745,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343751 PeerCount=6 +8:50AM DBG Fetching latest blocks from=343746 max=343745 to=343751 +8:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343751,"MaxBlockRetrieved":343745,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343756 PeerCount=6 +8:50AM DBG Fetching latest blocks from=343752 max=343751 to=343756 +8:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343756,"MaxBlockRetrieved":343756,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343762 PeerCount=6 +8:50AM DBG Fetching latest blocks from=343757 max=343756 to=343762 +8:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343762,"MaxBlockRetrieved":343756,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343767 PeerCount=6 +8:51AM DBG Fetching latest blocks from=343763 max=343762 to=343767 +8:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343767,"MaxBlockRetrieved":343767,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343772 PeerCount=6 +8:51AM DBG Fetching latest blocks from=343768 max=343767 to=343772 +8:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343772,"MaxBlockRetrieved":343772,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343778 PeerCount=6 +8:51AM DBG Fetching latest blocks from=343773 max=343772 to=343778 +8:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343778,"MaxBlockRetrieved":343778,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343783 PeerCount=6 +8:51AM DBG Fetching latest blocks from=343779 max=343778 to=343783 +8:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343783,"MaxBlockRetrieved":343783,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343788 PeerCount=6 +8:51AM DBG Fetching latest blocks from=343784 max=343783 to=343788 +8:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343788,"MaxBlockRetrieved":343788,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343794 PeerCount=6 +8:51AM DBG Fetching latest blocks from=343789 max=343788 to=343794 +8:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343794,"MaxBlockRetrieved":343794,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343799 PeerCount=6 +8:51AM DBG Fetching latest blocks from=343795 max=343794 to=343799 +8:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343799,"MaxBlockRetrieved":343799,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343805 PeerCount=6 +8:51AM DBG Fetching latest blocks from=343800 max=343799 to=343805 +8:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343805,"MaxBlockRetrieved":343805,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343810 PeerCount=6 +8:51AM DBG Fetching latest blocks from=343806 max=343805 to=343810 +8:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343810,"MaxBlockRetrieved":343805,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343816 PeerCount=6 +8:51AM DBG Fetching latest blocks from=343811 max=343810 to=343816 +8:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343816,"MaxBlockRetrieved":343816,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343821 PeerCount=6 +8:51AM DBG Fetching latest blocks from=343817 max=343816 to=343821 +8:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343821,"MaxBlockRetrieved":343821,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343827 PeerCount=6 +8:52AM DBG Fetching latest blocks from=343822 max=343821 to=343827 +8:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343827,"MaxBlockRetrieved":343827,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343832 PeerCount=6 +8:52AM DBG Fetching latest blocks from=343828 max=343827 to=343832 +8:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343832,"MaxBlockRetrieved":343832,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343837 PeerCount=6 +8:52AM DBG Fetching latest blocks from=343833 max=343832 to=343837 +8:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343837,"MaxBlockRetrieved":343832,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343843 PeerCount=6 +8:52AM DBG Fetching latest blocks from=343838 max=343837 to=343843 +8:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343843,"MaxBlockRetrieved":343843,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343848 PeerCount=6 +8:52AM DBG Fetching latest blocks from=343844 max=343843 to=343848 +8:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343848,"MaxBlockRetrieved":343848,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343854 PeerCount=6 +8:52AM DBG Fetching latest blocks from=343849 max=343848 to=343854 +8:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343854,"MaxBlockRetrieved":343854,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343859 PeerCount=6 +8:52AM DBG Fetching latest blocks from=343855 max=343854 to=343859 +8:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343859,"MaxBlockRetrieved":343859,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343864 PeerCount=6 +8:52AM DBG Fetching latest blocks from=343860 max=343859 to=343864 +8:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343864,"MaxBlockRetrieved":343864,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343870 PeerCount=6 +8:52AM DBG Fetching latest blocks from=343865 max=343864 to=343870 +8:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343870,"MaxBlockRetrieved":343870,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343875 PeerCount=6 +8:52AM DBG Fetching latest blocks from=343871 max=343870 to=343875 +8:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343875,"MaxBlockRetrieved":343875,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343881 PeerCount=6 +8:52AM DBG Fetching latest blocks from=343876 max=343875 to=343881 +8:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343881,"MaxBlockRetrieved":343881,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343886 PeerCount=6 +8:53AM DBG Fetching latest blocks from=343882 max=343881 to=343886 +8:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343886,"MaxBlockRetrieved":343886,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343891 PeerCount=6 +8:53AM DBG Fetching latest blocks from=343887 max=343886 to=343891 +8:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343891,"MaxBlockRetrieved":343891,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343897 PeerCount=6 +8:53AM DBG Fetching latest blocks from=343892 max=343891 to=343897 +8:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343897,"MaxBlockRetrieved":343897,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343902 PeerCount=6 +8:53AM DBG Fetching latest blocks from=343898 max=343897 to=343902 +8:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343902,"MaxBlockRetrieved":343902,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343908 PeerCount=6 +8:53AM DBG Fetching latest blocks from=343903 max=343902 to=343908 +8:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343908,"MaxBlockRetrieved":343902,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343913 PeerCount=6 +8:53AM DBG Fetching latest blocks from=343909 max=343908 to=343913 +8:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343913,"MaxBlockRetrieved":343913,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343918 PeerCount=6 +8:53AM DBG Fetching latest blocks from=343914 max=343913 to=343918 +8:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343918,"MaxBlockRetrieved":343918,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343924 PeerCount=6 +8:53AM DBG Fetching latest blocks from=343919 max=343918 to=343924 +8:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343924,"MaxBlockRetrieved":343924,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343929 PeerCount=6 +8:53AM DBG Fetching latest blocks from=343925 max=343924 to=343929 +8:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343929,"MaxBlockRetrieved":343929,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343935 PeerCount=6 +8:53AM DBG Fetching latest blocks from=343930 max=343929 to=343935 +8:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343935,"MaxBlockRetrieved":343935,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343940 PeerCount=6 +8:53AM DBG Fetching latest blocks from=343936 max=343935 to=343940 +8:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343940,"MaxBlockRetrieved":343940,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343945 PeerCount=6 +8:54AM DBG Fetching latest blocks from=343941 max=343940 to=343945 +8:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343945,"MaxBlockRetrieved":343945,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343951 PeerCount=6 +8:54AM DBG Fetching latest blocks from=343946 max=343945 to=343951 +8:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343951,"MaxBlockRetrieved":343951,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343957 PeerCount=6 +8:54AM DBG Fetching latest blocks from=343952 max=343951 to=343957 +8:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343957,"MaxBlockRetrieved":343957,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343962 PeerCount=6 +8:54AM DBG Fetching latest blocks from=343958 max=343957 to=343962 +8:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343962,"MaxBlockRetrieved":343962,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343968 PeerCount=6 +8:54AM DBG Fetching latest blocks from=343963 max=343962 to=343968 +8:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343968,"MaxBlockRetrieved":343968,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343973 PeerCount=6 +8:54AM DBG Fetching latest blocks from=343969 max=343968 to=343973 +8:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343973,"MaxBlockRetrieved":343973,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343978 PeerCount=6 +8:54AM DBG Fetching latest blocks from=343974 max=343973 to=343978 +8:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343978,"MaxBlockRetrieved":343978,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343984 PeerCount=6 +8:54AM DBG Fetching latest blocks from=343979 max=343978 to=343984 +8:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343984,"MaxBlockRetrieved":343984,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343989 PeerCount=6 +8:54AM DBG Fetching latest blocks from=343985 max=343984 to=343989 +8:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343989,"MaxBlockRetrieved":343984,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=343995 PeerCount=6 +8:54AM DBG Fetching latest blocks from=343990 max=343989 to=343995 +8:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":343995,"MaxBlockRetrieved":343995,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344000 PeerCount=6 +8:55AM DBG Fetching latest blocks from=343996 max=343995 to=344000 +8:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344000,"MaxBlockRetrieved":344000,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344005 PeerCount=6 +8:55AM DBG Fetching latest blocks from=344001 max=344000 to=344005 +8:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344005,"MaxBlockRetrieved":344005,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344011 PeerCount=6 +8:55AM DBG Fetching latest blocks from=344006 max=344005 to=344011 +8:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344011,"MaxBlockRetrieved":344011,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344016 PeerCount=6 +8:55AM DBG Fetching latest blocks from=344012 max=344011 to=344016 +8:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344016,"MaxBlockRetrieved":344016,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344022 PeerCount=6 +8:55AM DBG Fetching latest blocks from=344017 max=344016 to=344022 +8:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344022,"MaxBlockRetrieved":344022,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344027 PeerCount=6 +8:55AM DBG Fetching latest blocks from=344023 max=344022 to=344027 +8:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344027,"MaxBlockRetrieved":344027,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344033 PeerCount=6 +8:55AM DBG Fetching latest blocks from=344028 max=344027 to=344033 +8:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344033,"MaxBlockRetrieved":344033,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344038 PeerCount=6 +8:55AM DBG Fetching latest blocks from=344034 max=344033 to=344038 +8:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344038,"MaxBlockRetrieved":344038,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344044 PeerCount=6 +8:55AM DBG Fetching latest blocks from=344039 max=344038 to=344044 +8:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344044,"MaxBlockRetrieved":344044,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344049 PeerCount=6 +8:55AM DBG Fetching latest blocks from=344045 max=344044 to=344049 +8:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344049,"MaxBlockRetrieved":344049,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344054 PeerCount=6 +8:55AM DBG Fetching latest blocks from=344050 max=344049 to=344054 +8:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344054,"MaxBlockRetrieved":344054,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344060 PeerCount=6 +8:56AM DBG Fetching latest blocks from=344055 max=344054 to=344060 +8:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344060,"MaxBlockRetrieved":344060,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344065 PeerCount=6 +8:56AM DBG Fetching latest blocks from=344061 max=344060 to=344065 +8:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344065,"MaxBlockRetrieved":344060,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344071 PeerCount=6 +8:56AM DBG Fetching latest blocks from=344066 max=344065 to=344071 +8:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344071,"MaxBlockRetrieved":344071,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344076 PeerCount=6 +8:56AM DBG Fetching latest blocks from=344072 max=344071 to=344076 +8:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344076,"MaxBlockRetrieved":344076,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344081 PeerCount=6 +8:56AM DBG Fetching latest blocks from=344077 max=344076 to=344081 +8:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344081,"MaxBlockRetrieved":344081,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344087 PeerCount=6 +8:56AM DBG Fetching latest blocks from=344082 max=344081 to=344087 +8:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344087,"MaxBlockRetrieved":344087,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344092 PeerCount=6 +8:56AM DBG Fetching latest blocks from=344088 max=344087 to=344092 +8:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344092,"MaxBlockRetrieved":344092,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344098 PeerCount=6 +8:56AM DBG Fetching latest blocks from=344093 max=344092 to=344098 +8:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344098,"MaxBlockRetrieved":344098,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344103 PeerCount=6 +8:56AM DBG Fetching latest blocks from=344099 max=344098 to=344103 +8:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344103,"MaxBlockRetrieved":344103,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344108 PeerCount=6 +8:56AM DBG Fetching latest blocks from=344104 max=344103 to=344108 +8:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344108,"MaxBlockRetrieved":344108,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344114 PeerCount=6 +8:56AM DBG Fetching latest blocks from=344109 max=344108 to=344114 +8:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344114,"MaxBlockRetrieved":344108,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344119 PeerCount=6 +8:57AM DBG Fetching latest blocks from=344115 max=344114 to=344119 +8:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344119,"MaxBlockRetrieved":344119,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344125 PeerCount=6 +8:57AM DBG Fetching latest blocks from=344120 max=344119 to=344125 +8:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344125,"MaxBlockRetrieved":344125,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344130 PeerCount=6 +8:57AM DBG Fetching latest blocks from=344126 max=344125 to=344130 +8:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344130,"MaxBlockRetrieved":344130,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344135 PeerCount=6 +8:57AM DBG Fetching latest blocks from=344131 max=344130 to=344135 +8:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344135,"MaxBlockRetrieved":344135,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344141 PeerCount=6 +8:57AM DBG Fetching latest blocks from=344136 max=344135 to=344141 +8:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344141,"MaxBlockRetrieved":344141,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344146 PeerCount=6 +8:57AM DBG Fetching latest blocks from=344142 max=344141 to=344146 +8:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344146,"MaxBlockRetrieved":344146,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344152 PeerCount=6 +8:57AM DBG Fetching latest blocks from=344147 max=344146 to=344152 +8:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344152,"MaxBlockRetrieved":344152,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344157 PeerCount=6 +8:57AM DBG Fetching latest blocks from=344153 max=344152 to=344157 +8:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344157,"MaxBlockRetrieved":344157,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344162 PeerCount=6 +8:57AM DBG Fetching latest blocks from=344158 max=344157 to=344162 +8:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344162,"MaxBlockRetrieved":344162,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344168 PeerCount=6 +8:57AM DBG Fetching latest blocks from=344163 max=344162 to=344168 +8:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344168,"MaxBlockRetrieved":344168,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344173 PeerCount=6 +8:57AM DBG Fetching latest blocks from=344169 max=344168 to=344173 +8:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344173,"MaxBlockRetrieved":344168,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344179 PeerCount=6 +8:58AM DBG Fetching latest blocks from=344174 max=344173 to=344179 +8:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344179,"MaxBlockRetrieved":344173,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344184 PeerCount=6 +8:58AM DBG Fetching latest blocks from=344180 max=344179 to=344184 +8:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344184,"MaxBlockRetrieved":344184,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344190 PeerCount=6 +8:58AM DBG Fetching latest blocks from=344185 max=344184 to=344190 +8:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344190,"MaxBlockRetrieved":344190,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344195 PeerCount=6 +8:58AM DBG Fetching latest blocks from=344191 max=344190 to=344195 +8:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344195,"MaxBlockRetrieved":344195,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344201 PeerCount=6 +8:58AM DBG Fetching latest blocks from=344196 max=344195 to=344201 +8:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344201,"MaxBlockRetrieved":344201,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344206 PeerCount=6 +8:58AM DBG Fetching latest blocks from=344202 max=344201 to=344206 +8:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344206,"MaxBlockRetrieved":344206,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344211 PeerCount=6 +8:58AM DBG Fetching latest blocks from=344207 max=344206 to=344211 +8:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344211,"MaxBlockRetrieved":344211,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344217 PeerCount=6 +8:58AM DBG Fetching latest blocks from=344212 max=344211 to=344217 +8:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344217,"MaxBlockRetrieved":344217,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344222 PeerCount=6 +8:58AM DBG Fetching latest blocks from=344218 max=344217 to=344222 +8:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344222,"MaxBlockRetrieved":344222,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344228 PeerCount=6 +8:58AM DBG Fetching latest blocks from=344223 max=344222 to=344228 +8:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344228,"MaxBlockRetrieved":344228,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344233 PeerCount=6 +8:59AM DBG Fetching latest blocks from=344229 max=344228 to=344233 +8:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344233,"MaxBlockRetrieved":344233,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344238 PeerCount=6 +8:59AM DBG Fetching latest blocks from=344234 max=344233 to=344238 +8:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344238,"MaxBlockRetrieved":344238,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344244 PeerCount=6 +8:59AM DBG Fetching latest blocks from=344239 max=344238 to=344244 +8:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344244,"MaxBlockRetrieved":344244,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344249 PeerCount=6 +8:59AM DBG Fetching latest blocks from=344245 max=344244 to=344249 +8:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344249,"MaxBlockRetrieved":344249,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344255 PeerCount=6 +8:59AM DBG Fetching latest blocks from=344250 max=344249 to=344255 +8:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344255,"MaxBlockRetrieved":344255,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344260 PeerCount=6 +8:59AM DBG Fetching latest blocks from=344256 max=344255 to=344260 +8:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344260,"MaxBlockRetrieved":344260,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344265 PeerCount=6 +8:59AM DBG Fetching latest blocks from=344261 max=344260 to=344265 +8:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344265,"MaxBlockRetrieved":344265,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344271 PeerCount=6 +8:59AM DBG Fetching latest blocks from=344266 max=344265 to=344271 +8:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344271,"MaxBlockRetrieved":344271,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344276 PeerCount=6 +8:59AM DBG Fetching latest blocks from=344272 max=344271 to=344276 +8:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344276,"MaxBlockRetrieved":344276,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344282 PeerCount=6 +8:59AM DBG Fetching latest blocks from=344277 max=344276 to=344282 +8:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344282,"MaxBlockRetrieved":344282,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +8:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344287 PeerCount=6 +8:59AM DBG Fetching latest blocks from=344283 max=344282 to=344287 +8:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344287,"MaxBlockRetrieved":344282,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344292 PeerCount=6 +9:00AM DBG Fetching latest blocks from=344288 max=344287 to=344292 +9:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344292,"MaxBlockRetrieved":344292,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344298 PeerCount=6 +9:00AM DBG Fetching latest blocks from=344293 max=344292 to=344298 +9:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344298,"MaxBlockRetrieved":344298,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344303 PeerCount=6 +9:00AM DBG Fetching latest blocks from=344299 max=344298 to=344303 +9:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344303,"MaxBlockRetrieved":344303,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344309 PeerCount=6 +9:00AM DBG Fetching latest blocks from=344304 max=344303 to=344309 +9:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344309,"MaxBlockRetrieved":344309,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344314 PeerCount=6 +9:00AM DBG Fetching latest blocks from=344310 max=344309 to=344314 +9:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344314,"MaxBlockRetrieved":344314,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344320 PeerCount=6 +9:00AM DBG Fetching latest blocks from=344315 max=344314 to=344320 +9:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344320,"MaxBlockRetrieved":344320,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344325 PeerCount=6 +9:00AM DBG Fetching latest blocks from=344321 max=344320 to=344325 +9:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344325,"MaxBlockRetrieved":344320,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344330 PeerCount=6 +9:00AM DBG Fetching latest blocks from=344326 max=344325 to=344330 +9:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344330,"MaxBlockRetrieved":344330,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344336 PeerCount=6 +9:00AM DBG Fetching latest blocks from=344331 max=344330 to=344336 +9:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344336,"MaxBlockRetrieved":344336,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344341 PeerCount=6 +9:00AM DBG Fetching latest blocks from=344337 max=344336 to=344341 +9:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344341,"MaxBlockRetrieved":344341,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344347 PeerCount=6 +9:00AM DBG Fetching latest blocks from=344342 max=344341 to=344347 +9:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344347,"MaxBlockRetrieved":344347,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344352 PeerCount=6 +9:01AM DBG Fetching latest blocks from=344348 max=344347 to=344352 +9:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344352,"MaxBlockRetrieved":344352,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344357 PeerCount=6 +9:01AM DBG Fetching latest blocks from=344353 max=344352 to=344357 +9:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344357,"MaxBlockRetrieved":344357,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344363 PeerCount=6 +9:01AM DBG Fetching latest blocks from=344358 max=344357 to=344363 +9:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344363,"MaxBlockRetrieved":344363,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344368 PeerCount=6 +9:01AM DBG Fetching latest blocks from=344364 max=344363 to=344368 +9:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344368,"MaxBlockRetrieved":344363,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344377 PeerCount=6 +9:01AM DBG Fetching latest blocks from=344369 max=344368 to=344377 +9:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344377,"MaxBlockRetrieved":344377,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344382 PeerCount=6 +9:01AM DBG Fetching latest blocks from=344378 max=344377 to=344382 +9:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344382,"MaxBlockRetrieved":344382,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344388 PeerCount=6 +9:01AM DBG Fetching latest blocks from=344383 max=344382 to=344388 +9:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344388,"MaxBlockRetrieved":344388,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344393 PeerCount=6 +9:01AM DBG Fetching latest blocks from=344389 max=344388 to=344393 +9:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344393,"MaxBlockRetrieved":344393,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344399 PeerCount=6 +9:01AM DBG Fetching latest blocks from=344394 max=344393 to=344399 +9:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344399,"MaxBlockRetrieved":344399,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344404 PeerCount=6 +9:01AM DBG Fetching latest blocks from=344400 max=344399 to=344404 +9:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344404,"MaxBlockRetrieved":344404,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344410 PeerCount=6 +9:02AM DBG Fetching latest blocks from=344405 max=344404 to=344410 +9:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344410,"MaxBlockRetrieved":344410,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344415 PeerCount=6 +9:02AM DBG Fetching latest blocks from=344411 max=344410 to=344415 +9:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344415,"MaxBlockRetrieved":344415,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344420 PeerCount=6 +9:02AM DBG Fetching latest blocks from=344416 max=344415 to=344420 +9:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344420,"MaxBlockRetrieved":344420,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344426 PeerCount=6 +9:02AM DBG Fetching latest blocks from=344421 max=344420 to=344426 +9:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344426,"MaxBlockRetrieved":344426,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344432 PeerCount=6 +9:02AM DBG Fetching latest blocks from=344427 max=344426 to=344432 +9:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344432,"MaxBlockRetrieved":344432,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344437 PeerCount=6 +9:02AM DBG Fetching latest blocks from=344433 max=344432 to=344437 +9:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344437,"MaxBlockRetrieved":344437,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344443 PeerCount=6 +9:02AM DBG Fetching latest blocks from=344438 max=344437 to=344443 +9:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344443,"MaxBlockRetrieved":344443,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344448 PeerCount=6 +9:02AM DBG Fetching latest blocks from=344444 max=344443 to=344448 +9:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344448,"MaxBlockRetrieved":344448,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344454 PeerCount=6 +9:02AM DBG Fetching latest blocks from=344449 max=344448 to=344454 +9:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344454,"MaxBlockRetrieved":344448,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344459 PeerCount=6 +9:02AM DBG Fetching latest blocks from=344455 max=344454 to=344459 +9:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344459,"MaxBlockRetrieved":344459,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344464 PeerCount=6 +9:02AM DBG Fetching latest blocks from=344460 max=344459 to=344464 +9:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344464,"MaxBlockRetrieved":344464,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344470 PeerCount=6 +9:03AM DBG Fetching latest blocks from=344465 max=344464 to=344470 +9:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344470,"MaxBlockRetrieved":344470,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344475 PeerCount=6 +9:03AM DBG Fetching latest blocks from=344471 max=344470 to=344475 +9:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344475,"MaxBlockRetrieved":344475,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344481 PeerCount=6 +9:03AM DBG Fetching latest blocks from=344476 max=344475 to=344481 +9:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344481,"MaxBlockRetrieved":344481,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344487 PeerCount=6 +9:03AM DBG Fetching latest blocks from=344482 max=344481 to=344487 +9:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344487,"MaxBlockRetrieved":344487,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344492 PeerCount=6 +9:03AM DBG Fetching latest blocks from=344488 max=344487 to=344492 +9:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344492,"MaxBlockRetrieved":344492,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344498 PeerCount=6 +9:03AM DBG Fetching latest blocks from=344493 max=344492 to=344498 +9:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344498,"MaxBlockRetrieved":344498,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344503 PeerCount=6 +9:03AM DBG Fetching latest blocks from=344499 max=344498 to=344503 +9:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344503,"MaxBlockRetrieved":344503,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344508 PeerCount=6 +9:03AM DBG Fetching latest blocks from=344504 max=344503 to=344508 +9:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344508,"MaxBlockRetrieved":344508,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344514 PeerCount=6 +9:03AM DBG Fetching latest blocks from=344509 max=344508 to=344514 +9:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344514,"MaxBlockRetrieved":344508,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344519 PeerCount=6 +9:03AM DBG Fetching latest blocks from=344515 max=344514 to=344519 +9:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344519,"MaxBlockRetrieved":344519,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:03AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344525 PeerCount=6 +9:03AM DBG Fetching latest blocks from=344520 max=344519 to=344525 +9:03AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344525,"MaxBlockRetrieved":344519,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344530 PeerCount=6 +9:04AM DBG Fetching latest blocks from=344526 max=344525 to=344530 +9:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344530,"MaxBlockRetrieved":344530,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344535 PeerCount=6 +9:04AM DBG Fetching latest blocks from=344531 max=344530 to=344535 +9:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344535,"MaxBlockRetrieved":344535,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344541 PeerCount=6 +9:04AM DBG Fetching latest blocks from=344536 max=344535 to=344541 +9:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344541,"MaxBlockRetrieved":344535,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344547 PeerCount=6 +9:04AM DBG Fetching latest blocks from=344542 max=344541 to=344547 +9:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344547,"MaxBlockRetrieved":344547,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344552 PeerCount=6 +9:04AM DBG Fetching latest blocks from=344548 max=344547 to=344552 +9:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344552,"MaxBlockRetrieved":344552,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344558 PeerCount=6 +9:04AM DBG Fetching latest blocks from=344553 max=344552 to=344558 +9:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344558,"MaxBlockRetrieved":344558,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344563 PeerCount=6 +9:04AM DBG Fetching latest blocks from=344559 max=344558 to=344563 +9:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344563,"MaxBlockRetrieved":344558,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344569 PeerCount=6 +9:04AM DBG Fetching latest blocks from=344564 max=344563 to=344569 +9:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344569,"MaxBlockRetrieved":344569,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344576 PeerCount=6 +9:04AM DBG Fetching latest blocks from=344570 max=344569 to=344576 +9:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344576,"MaxBlockRetrieved":344576,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:04AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344582 PeerCount=6 +9:04AM DBG Fetching latest blocks from=344577 max=344576 to=344582 +9:04AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344582,"MaxBlockRetrieved":344582,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344587 PeerCount=6 +9:05AM DBG Fetching latest blocks from=344583 max=344582 to=344587 +9:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344587,"MaxBlockRetrieved":344587,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344593 PeerCount=6 +9:05AM DBG Fetching latest blocks from=344588 max=344587 to=344593 +9:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344593,"MaxBlockRetrieved":344593,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344598 PeerCount=6 +9:05AM DBG Fetching latest blocks from=344594 max=344593 to=344598 +9:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344598,"MaxBlockRetrieved":344598,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344603 PeerCount=6 +9:05AM DBG Fetching latest blocks from=344599 max=344598 to=344603 +9:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344603,"MaxBlockRetrieved":344598,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344609 PeerCount=6 +9:05AM DBG Fetching latest blocks from=344604 max=344603 to=344609 +9:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344609,"MaxBlockRetrieved":344609,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344614 PeerCount=6 +9:05AM DBG Fetching latest blocks from=344610 max=344609 to=344614 +9:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344614,"MaxBlockRetrieved":344614,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344620 PeerCount=6 +9:05AM DBG Fetching latest blocks from=344615 max=344614 to=344620 +9:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344620,"MaxBlockRetrieved":344620,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344625 PeerCount=6 +9:05AM DBG Fetching latest blocks from=344621 max=344620 to=344625 +9:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344625,"MaxBlockRetrieved":344625,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344630 PeerCount=6 +9:05AM DBG Fetching latest blocks from=344626 max=344625 to=344630 +9:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344630,"MaxBlockRetrieved":344630,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344636 PeerCount=6 +9:05AM DBG Fetching latest blocks from=344631 max=344630 to=344636 +9:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344636,"MaxBlockRetrieved":344636,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:05AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344641 PeerCount=6 +9:05AM DBG Fetching latest blocks from=344637 max=344636 to=344641 +9:05AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344641,"MaxBlockRetrieved":344641,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344647 PeerCount=6 +9:06AM DBG Fetching latest blocks from=344642 max=344641 to=344647 +9:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344647,"MaxBlockRetrieved":344647,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344652 PeerCount=6 +9:06AM DBG Fetching latest blocks from=344648 max=344647 to=344652 +9:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344652,"MaxBlockRetrieved":344652,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344657 PeerCount=6 +9:06AM DBG Fetching latest blocks from=344653 max=344652 to=344657 +9:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344657,"MaxBlockRetrieved":344657,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344663 PeerCount=6 +9:06AM DBG Fetching latest blocks from=344658 max=344657 to=344663 +9:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344663,"MaxBlockRetrieved":344657,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344668 PeerCount=6 +9:06AM DBG Fetching latest blocks from=344664 max=344663 to=344668 +9:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344668,"MaxBlockRetrieved":344668,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344674 PeerCount=6 +9:06AM DBG Fetching latest blocks from=344669 max=344668 to=344674 +9:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344674,"MaxBlockRetrieved":344674,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344679 PeerCount=6 +9:06AM DBG Fetching latest blocks from=344675 max=344674 to=344679 +9:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344679,"MaxBlockRetrieved":344679,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344684 PeerCount=6 +9:06AM DBG Fetching latest blocks from=344680 max=344679 to=344684 +9:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344684,"MaxBlockRetrieved":344684,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344690 PeerCount=6 +9:06AM DBG Fetching latest blocks from=344685 max=344684 to=344690 +9:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344690,"MaxBlockRetrieved":344690,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:06AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344695 PeerCount=6 +9:06AM DBG Fetching latest blocks from=344691 max=344690 to=344695 +9:06AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344695,"MaxBlockRetrieved":344695,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344701 PeerCount=6 +9:07AM DBG Fetching latest blocks from=344696 max=344695 to=344701 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344701,"MaxBlockRetrieved":344701,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344706 PeerCount=6 +9:07AM DBG Fetching latest blocks from=344702 max=344701 to=344706 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344706,"MaxBlockRetrieved":344706,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344711 PeerCount=6 +9:07AM DBG Fetching latest blocks from=344707 max=344706 to=344711 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344711,"MaxBlockRetrieved":344711,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344717 PeerCount=6 +9:07AM DBG Fetching latest blocks from=344712 max=344711 to=344717 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344717,"MaxBlockRetrieved":344717,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344722 PeerCount=6 +9:07AM DBG Fetching latest blocks from=344718 max=344717 to=344722 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344722,"MaxBlockRetrieved":344717,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344728 PeerCount=6 +9:07AM DBG Fetching latest blocks from=344723 max=344722 to=344728 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344728,"MaxBlockRetrieved":344728,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344733 PeerCount=6 +9:07AM DBG Fetching latest blocks from=344729 max=344728 to=344733 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344733,"MaxBlockRetrieved":344733,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344738 PeerCount=6 +9:07AM DBG Fetching latest blocks from=344734 max=344733 to=344738 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344738,"MaxBlockRetrieved":344738,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344744 PeerCount=6 +9:07AM DBG Fetching latest blocks from=344739 max=344738 to=344744 +9:07AM TRC Unknown ui event id= +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM TRC Unknown ui event id= +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=344744 +9:07AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=31 windowOffset=0 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=344743 +9:07AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=31 windowOffset=0 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=344742 +9:07AM DBG Down allBlocks=100 currIdx=3 dy=35 renderedBlocks=31 windowOffset=0 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=344741 +9:07AM DBG Down allBlocks=100 currIdx=4 dy=35 renderedBlocks=31 windowOffset=0 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=344740 +9:07AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=31 windowOffset=0 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=344739 +9:07AM DBG Down allBlocks=100 currIdx=6 dy=35 renderedBlocks=31 windowOffset=0 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=344738 +9:07AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=31 windowOffset=0 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=344737 +9:07AM DBG Down allBlocks=100 currIdx=8 dy=35 renderedBlocks=31 windowOffset=0 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=344736 +9:07AM DBG Down allBlocks=100 currIdx=9 dy=35 renderedBlocks=31 windowOffset=0 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=344735 +9:07AM DBG Down allBlocks=100 currIdx=10 dy=35 renderedBlocks=31 windowOffset=0 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=344734 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=344683 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336306,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=344652 +9:07AM DBG Fetching older blocks from=336256 min=336306 to=336305 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344744,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336256,"PeerCount":6,"PendingCount":0} +9:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344749 PeerCount=6 +9:07AM DBG Fetching latest blocks from=344745 max=344744 to=344749 +9:07AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344744,"MinBlockRetrieved":336256,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Fetching older blocks from=336206 min=336256 to=336255 +9:07AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336256,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Up currIdx=7 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336257 +9:07AM DBG Up currIdx=6 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336258 +9:07AM DBG Up currIdx=5 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336259 +9:07AM DBG Up currIdx=4 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336260 +9:07AM DBG Up currIdx=3 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336261 +9:07AM DBG Up currIdx=2 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336262 +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336285 +9:07AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336284 +9:07AM DBG Up currIdx=3 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336285 +9:07AM DBG Up currIdx=2 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336286 +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Up currIdx=1 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336287 +9:07AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336286 +9:07AM DBG Down allBlocks=100 currIdx=3 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336285 +9:07AM DBG Down allBlocks=100 currIdx=4 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336284 +9:07AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344749,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336283 +9:07AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344755 PeerCount=6 +9:07AM DBG Fetching latest blocks from=344750 max=344749 to=344755 +9:07AM DBG Down allBlocks=100 currIdx=6 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344749,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336282 +9:07AM DBG Fetching older blocks from=336156 min=336206 to=336205 +9:07AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336281 +9:07AM DBG Down allBlocks=100 currIdx=8 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336280 +9:07AM DBG Down allBlocks=100 currIdx=9 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336206,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336279 +9:07AM DBG Down allBlocks=100 currIdx=10 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336278 +9:07AM DBG Down allBlocks=100 currIdx=11 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336277 +9:07AM DBG Down allBlocks=100 currIdx=12 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336276 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Down allBlocks=100 currIdx=13 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336275 +9:07AM DBG Down allBlocks=100 currIdx=14 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336274 +9:07AM DBG Down allBlocks=100 currIdx=15 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336273 +9:07AM DBG Down allBlocks=100 currIdx=16 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336272 +9:07AM DBG Down allBlocks=100 currIdx=17 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336271 +9:07AM DBG Down allBlocks=100 currIdx=18 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336270 +9:07AM DBG Down allBlocks=100 currIdx=19 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336269 +9:07AM DBG Down allBlocks=100 currIdx=20 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336268 +9:07AM DBG Down allBlocks=100 currIdx=21 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336267 +9:07AM DBG Down allBlocks=100 currIdx=22 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336266 +9:07AM DBG Down allBlocks=100 currIdx=23 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336265 +9:07AM DBG Down allBlocks=100 currIdx=24 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336264 +9:07AM DBG Down allBlocks=100 currIdx=25 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336263 +9:07AM DBG Down allBlocks=100 currIdx=26 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336262 +9:07AM DBG Down allBlocks=100 currIdx=27 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336261 +9:07AM DBG Down allBlocks=100 currIdx=28 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336260 +9:07AM DBG Down allBlocks=100 currIdx=29 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336259 +9:07AM DBG Down allBlocks=100 currIdx=30 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336258 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336257 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:07AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:07AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:07AM DBG Selected block changed blockNumber=336256 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336256 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336256 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344755,"MaxBlockRetrieved":344755,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336256 +9:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344760 PeerCount=6 +9:08AM DBG Fetching latest blocks from=344756 max=344755 to=344760 +9:08AM DBG Fetching older blocks from=336106 min=336156 to=336155 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344760,"MaxBlockRetrieved":344760,"MinBlockRetrieved":336156,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336256 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344760,"MaxBlockRetrieved":344760,"MinBlockRetrieved":336106,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344760,"MaxBlockRetrieved":344760,"MinBlockRetrieved":336106,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344760,"MaxBlockRetrieved":344760,"MinBlockRetrieved":336106,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336144 +9:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344766 PeerCount=6 +9:08AM DBG Fetching latest blocks from=344761 max=344760 to=344766 +9:08AM DBG Fetching older blocks from=336056 min=336106 to=336105 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336106,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336106,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336113 +9:08AM DBG Fetching older blocks from=336006 min=336056 to=336055 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336006,"PeerCount":6,"PendingCount":0} +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336006,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336006 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336006,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336006 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336006,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336006 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336006,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336006 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336006,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336006 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336006,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336006 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336006,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336006,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336006,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336006,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336044 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344766,"MaxBlockRetrieved":344766,"MinBlockRetrieved":336006,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=336013 +9:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344771 PeerCount=6 +9:08AM DBG Fetching latest blocks from=344767 max=344766 to=344771 +9:08AM DBG Fetching older blocks from=335956 min=336006 to=336005 +9:08AM WRN Unable to append more history error="the function is currently locked" +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344771,"MaxBlockRetrieved":344771,"MinBlockRetrieved":335956,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344771,"MaxBlockRetrieved":344771,"MinBlockRetrieved":335956,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335956 +9:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344772 PeerCount=6 +9:08AM DBG Fetching latest blocks from=344772 max=344771 to=344772 +9:08AM DBG Fetching older blocks from=335906 min=335956 to=335955 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344772,"MaxBlockRetrieved":344772,"MinBlockRetrieved":335906,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=7 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344772,"MaxBlockRetrieved":344772,"MinBlockRetrieved":335906,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335957 +9:08AM DBG Up currIdx=6 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344772,"MaxBlockRetrieved":344772,"MinBlockRetrieved":335906,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335958 +9:08AM DBG Up currIdx=5 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344772,"MaxBlockRetrieved":344772,"MinBlockRetrieved":335906,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335959 +9:08AM DBG Down allBlocks=100 currIdx=4 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344772,"MaxBlockRetrieved":344772,"MinBlockRetrieved":335906,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335958 +9:08AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344772,"MaxBlockRetrieved":344772,"MinBlockRetrieved":335906,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335957 +9:08AM DBG Down allBlocks=100 currIdx=6 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344772,"MaxBlockRetrieved":344772,"MinBlockRetrieved":335906,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335956 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344772,"MaxBlockRetrieved":344772,"MinBlockRetrieved":335906,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344772,"MaxBlockRetrieved":344772,"MinBlockRetrieved":335906,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344772,"MaxBlockRetrieved":344772,"MinBlockRetrieved":335906,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344772,"MaxBlockRetrieved":344772,"MinBlockRetrieved":335906,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344772,"MaxBlockRetrieved":344772,"MinBlockRetrieved":335906,"PeerCount":6,"PendingCount":0} +9:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344778 PeerCount=6 +9:08AM DBG Fetching latest blocks from=344773 max=344772 to=344778 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344772,"MinBlockRetrieved":335906,"PeerCount":6,"PendingCount":0} +9:08AM DBG Fetching older blocks from=335856 min=335906 to=335905 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335856,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335944 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335856,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335913 +9:08AM DBG Fetching older blocks from=335806 min=335856 to=335855 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=7 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335807 +9:08AM DBG Up currIdx=6 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335808 +9:08AM DBG Up currIdx=5 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335809 +9:08AM DBG Up currIdx=4 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335810 +9:08AM DBG Up currIdx=3 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335811 +9:08AM DBG Up currIdx=2 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335812 +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344778,"MaxBlockRetrieved":344778,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344784 PeerCount=6 +9:08AM DBG Fetching latest blocks from=344779 max=344778 to=344784 +9:08AM DBG Fetching older blocks from=335756 min=335806 to=335805 +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335806,"PeerCount":6,"PendingCount":0} +9:08AM DBG Up currIdx=1 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335836 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335835 +9:08AM DBG Down allBlocks=100 currIdx=3 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335834 +9:08AM DBG Down allBlocks=100 currIdx=4 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335833 +9:08AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335832 +9:08AM DBG Down allBlocks=100 currIdx=6 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335831 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335830 +9:08AM DBG Down allBlocks=100 currIdx=8 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335829 +9:08AM DBG Down allBlocks=100 currIdx=9 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335828 +9:08AM DBG Down allBlocks=100 currIdx=10 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335827 +9:08AM DBG Down allBlocks=100 currIdx=11 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335826 +9:08AM DBG Down allBlocks=100 currIdx=12 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335825 +9:08AM DBG Down allBlocks=100 currIdx=13 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335824 +9:08AM DBG Down allBlocks=100 currIdx=14 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335823 +9:08AM DBG Down allBlocks=100 currIdx=15 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335822 +9:08AM DBG Down allBlocks=100 currIdx=16 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335821 +9:08AM DBG Down allBlocks=100 currIdx=17 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335820 +9:08AM DBG Down allBlocks=100 currIdx=18 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335819 +9:08AM DBG Down allBlocks=100 currIdx=19 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335818 +9:08AM DBG Down allBlocks=100 currIdx=20 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335817 +9:08AM DBG Down allBlocks=100 currIdx=21 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335816 +9:08AM DBG Down allBlocks=100 currIdx=22 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335815 +9:08AM DBG Down allBlocks=100 currIdx=23 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335814 +9:08AM DBG Down allBlocks=100 currIdx=24 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335813 +9:08AM DBG Down allBlocks=100 currIdx=25 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335812 +9:08AM DBG Down allBlocks=100 currIdx=26 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335811 +9:08AM DBG Down allBlocks=100 currIdx=27 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335810 +9:08AM DBG Down allBlocks=100 currIdx=28 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335809 +9:08AM DBG Down allBlocks=100 currIdx=29 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335808 +9:08AM DBG Down allBlocks=100 currIdx=30 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335807 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Up currIdx=31 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335807 +9:08AM DBG Down allBlocks=100 currIdx=30 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344784,"MaxBlockRetrieved":344784,"MinBlockRetrieved":335756,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344789 PeerCount=6 +9:08AM DBG Fetching latest blocks from=344785 max=344784 to=344789 +9:08AM DBG Fetching older blocks from=335706 min=335756 to=335755 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344789,"MaxBlockRetrieved":344789,"MinBlockRetrieved":335706,"PeerCount":6,"PendingCount":0} +9:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344795 PeerCount=6 +9:08AM DBG Fetching latest blocks from=344790 max=344789 to=344795 +9:08AM DBG Fetching older blocks from=335656 min=335706 to=335705 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344795,"MaxBlockRetrieved":344795,"MinBlockRetrieved":335656,"PeerCount":6,"PendingCount":0} +9:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344800 PeerCount=6 +9:08AM DBG Fetching latest blocks from=344796 max=344795 to=344800 +9:08AM DBG Fetching older blocks from=335606 min=335656 to=335655 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM TRC Unknown ui event id= +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM TRC Unknown ui event id= +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335806 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM TRC Unknown ui event id= +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM TRC Unknown ui event id= +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344800,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344806 PeerCount=6 +9:08AM DBG Fetching latest blocks from=344801 max=344800 to=344806 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344806,"MaxBlockRetrieved":344800,"MinBlockRetrieved":335606,"PeerCount":6,"PendingCount":0} +9:08AM DBG Fetching older blocks from=335556 min=335606 to=335605 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344806,"MaxBlockRetrieved":344806,"MinBlockRetrieved":335556,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335644 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344806,"MaxBlockRetrieved":344806,"MinBlockRetrieved":335556,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335613 +9:08AM DBG Fetching older blocks from=335506 min=335556 to=335555 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344806,"MaxBlockRetrieved":344806,"MinBlockRetrieved":335506,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344806,"MaxBlockRetrieved":344806,"MinBlockRetrieved":335506,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335599 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344806,"MaxBlockRetrieved":344806,"MinBlockRetrieved":335506,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335544 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344806,"MaxBlockRetrieved":344806,"MinBlockRetrieved":335506,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335513 +9:08AM DBG Fetching older blocks from=335456 min=335506 to=335505 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344806,"MaxBlockRetrieved":344806,"MinBlockRetrieved":335456,"PeerCount":6,"PendingCount":0} +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344806,"MaxBlockRetrieved":344806,"MinBlockRetrieved":335456,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335549 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344806,"MaxBlockRetrieved":344806,"MinBlockRetrieved":335456,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335494 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344806,"MaxBlockRetrieved":344806,"MinBlockRetrieved":335456,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335463 +9:08AM DBG Fetching older blocks from=335406 min=335456 to=335455 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344806,"MaxBlockRetrieved":344806,"MinBlockRetrieved":335406,"PeerCount":6,"PendingCount":0} +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344806,"MaxBlockRetrieved":344806,"MinBlockRetrieved":335406,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344811 PeerCount=6 +9:08AM DBG Fetching latest blocks from=344807 max=344806 to=344811 +9:08AM DBG Fetching older blocks from=335356 min=335406 to=335405 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335406,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335406,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:08AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:08AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344811,"MaxBlockRetrieved":344811,"MinBlockRetrieved":335356,"PeerCount":6,"PendingCount":0} +9:08AM DBG Selected block changed blockNumber=335406 +9:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344817 PeerCount=6 +9:09AM DBG Fetching latest blocks from=344812 max=344811 to=344817 +9:09AM DBG Fetching older blocks from=335306 min=335356 to=335355 +9:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344817,"MaxBlockRetrieved":344817,"MinBlockRetrieved":335306,"PeerCount":6,"PendingCount":0} +9:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344822 PeerCount=6 +9:09AM DBG Fetching latest blocks from=344818 max=344817 to=344822 +9:09AM DBG Fetching older blocks from=335256 min=335306 to=335305 +9:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344822,"MaxBlockRetrieved":344822,"MinBlockRetrieved":335256,"PeerCount":6,"PendingCount":0} +9:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344822,"MaxBlockRetrieved":344822,"MinBlockRetrieved":335256,"PeerCount":6,"PendingCount":0} +9:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344828 PeerCount=6 +9:09AM DBG Fetching latest blocks from=344823 max=344822 to=344828 +9:09AM DBG Fetching older blocks from=335206 min=335256 to=335255 +9:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344828,"MaxBlockRetrieved":344828,"MinBlockRetrieved":335206,"PeerCount":6,"PendingCount":0} +9:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344834 PeerCount=6 +9:09AM DBG Fetching latest blocks from=344829 max=344828 to=344834 +9:09AM DBG Fetching older blocks from=335156 min=335206 to=335205 +9:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344834,"MaxBlockRetrieved":344834,"MinBlockRetrieved":335156,"PeerCount":6,"PendingCount":0} +9:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344839 PeerCount=6 +9:09AM DBG Fetching latest blocks from=344835 max=344834 to=344839 +9:09AM DBG Fetching older blocks from=335106 min=335156 to=335155 +9:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344839,"MaxBlockRetrieved":344839,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344845 PeerCount=6 +9:09AM DBG Fetching latest blocks from=344840 max=344839 to=344845 +9:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344845,"MaxBlockRetrieved":344845,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344850 PeerCount=6 +9:09AM DBG Fetching latest blocks from=344846 max=344845 to=344850 +9:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344850,"MaxBlockRetrieved":344850,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344855 PeerCount=6 +9:09AM DBG Fetching latest blocks from=344851 max=344850 to=344855 +9:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344855,"MaxBlockRetrieved":344855,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344861 PeerCount=6 +9:09AM DBG Fetching latest blocks from=344856 max=344855 to=344861 +9:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344861,"MaxBlockRetrieved":344861,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344867 PeerCount=6 +9:09AM DBG Fetching latest blocks from=344862 max=344861 to=344867 +9:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344867,"MaxBlockRetrieved":344867,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:09AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344872 PeerCount=6 +9:09AM DBG Fetching latest blocks from=344868 max=344867 to=344872 +9:09AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344872,"MaxBlockRetrieved":344872,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344878 PeerCount=6 +9:10AM DBG Fetching latest blocks from=344873 max=344872 to=344878 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344878,"MaxBlockRetrieved":344878,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344883 PeerCount=6 +9:10AM DBG Fetching latest blocks from=344879 max=344878 to=344883 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344883,"MaxBlockRetrieved":344883,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:10AM TRC Unknown ui event id= +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344883,"MaxBlockRetrieved":344883,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:10AM TRC Unknown ui event id= +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344883,"MaxBlockRetrieved":344883,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344888 PeerCount=6 +9:10AM DBG Fetching latest blocks from=344884 max=344883 to=344888 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344888,"MaxBlockRetrieved":344888,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:10AM TRC Unknown ui event id= +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344888,"MaxBlockRetrieved":344888,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:10AM TRC Unknown ui event id= +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344888,"MaxBlockRetrieved":344888,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344888,"MaxBlockRetrieved":344888,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335144 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344888,"MaxBlockRetrieved":344888,"MinBlockRetrieved":335106,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335113 +9:10AM DBG Fetching older blocks from=335056 min=335106 to=335105 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344888,"MaxBlockRetrieved":344888,"MinBlockRetrieved":335056,"PeerCount":6,"PendingCount":0} +9:10AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344888,"MaxBlockRetrieved":344888,"MinBlockRetrieved":335056,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344888,"MaxBlockRetrieved":344888,"MinBlockRetrieved":335056,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344888,"MaxBlockRetrieved":344888,"MinBlockRetrieved":335056,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344888,"MaxBlockRetrieved":344888,"MinBlockRetrieved":335056,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344888,"MaxBlockRetrieved":344888,"MinBlockRetrieved":335056,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344888,"MaxBlockRetrieved":344888,"MinBlockRetrieved":335056,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=7 windowOffset=93 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344888,"MaxBlockRetrieved":344888,"MinBlockRetrieved":335056,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344894 PeerCount=6 +9:10AM DBG Fetching latest blocks from=344889 max=344888 to=344894 +9:10AM DBG Fetching older blocks from=335006 min=335056 to=335055 +9:10AM DBG Up currIdx=7 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335056,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335057 +9:10AM DBG Up currIdx=6 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335058 +9:10AM DBG Up currIdx=5 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335059 +9:10AM DBG Up currIdx=4 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335060 +9:10AM DBG Up currIdx=3 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335061 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=2 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335062 +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335086 +9:10AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335085 +9:10AM DBG Down allBlocks=100 currIdx=3 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335084 +9:10AM DBG Down allBlocks=100 currIdx=4 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335083 +9:10AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335082 +9:10AM DBG Down allBlocks=100 currIdx=6 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335081 +9:10AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335080 +9:10AM DBG Down allBlocks=100 currIdx=8 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335079 +9:10AM DBG Down allBlocks=100 currIdx=9 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335078 +9:10AM DBG Down allBlocks=100 currIdx=10 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335077 +9:10AM DBG Down allBlocks=100 currIdx=11 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335076 +9:10AM DBG Down allBlocks=100 currIdx=12 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335075 +9:10AM DBG Down allBlocks=100 currIdx=13 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335074 +9:10AM DBG Down allBlocks=100 currIdx=14 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335073 +9:10AM DBG Down allBlocks=100 currIdx=15 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335072 +9:10AM DBG Down allBlocks=100 currIdx=16 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335071 +9:10AM DBG Down allBlocks=100 currIdx=17 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335070 +9:10AM DBG Down allBlocks=100 currIdx=18 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335069 +9:10AM DBG Down allBlocks=100 currIdx=19 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335068 +9:10AM DBG Down allBlocks=100 currIdx=20 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335067 +9:10AM DBG Down allBlocks=100 currIdx=21 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335066 +9:10AM DBG Down allBlocks=100 currIdx=22 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335065 +9:10AM DBG Down allBlocks=100 currIdx=23 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335064 +9:10AM DBG Down allBlocks=100 currIdx=24 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335063 +9:10AM DBG Down allBlocks=100 currIdx=25 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335062 +9:10AM DBG Down allBlocks=100 currIdx=26 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335061 +9:10AM DBG Down allBlocks=100 currIdx=27 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344894,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335060 +9:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344899 PeerCount=6 +9:10AM DBG Fetching latest blocks from=344895 max=344894 to=344899 +9:10AM DBG Down allBlocks=100 currIdx=28 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335059 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344894,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Fetching older blocks from=334956 min=335006 to=335005 +9:10AM DBG Down allBlocks=100 currIdx=29 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":335006,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335058 +9:10AM DBG Down allBlocks=100 currIdx=30 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334956,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335057 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334956,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334956,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334956,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334956,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334956,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334956,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334956,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=335056 +9:10AM DBG Fetching older blocks from=334906 min=334956 to=334955 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344899,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344905 PeerCount=6 +9:10AM DBG Fetching latest blocks from=344900 max=344899 to=344905 +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344899,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Fetching older blocks from=334856 min=334906 to=334905 +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334906,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334936 +9:10AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334935 +9:10AM DBG Down allBlocks=100 currIdx=3 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334934 +9:10AM DBG Down allBlocks=100 currIdx=4 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334933 +9:10AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334932 +9:10AM DBG Down allBlocks=100 currIdx=6 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334931 +9:10AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334930 +9:10AM DBG Down allBlocks=100 currIdx=8 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334929 +9:10AM DBG Down allBlocks=100 currIdx=9 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334928 +9:10AM DBG Down allBlocks=100 currIdx=10 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334927 +9:10AM DBG Down allBlocks=100 currIdx=11 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334926 +9:10AM DBG Down allBlocks=100 currIdx=12 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334925 +9:10AM DBG Down allBlocks=100 currIdx=13 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334924 +9:10AM DBG Down allBlocks=100 currIdx=14 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334923 +9:10AM DBG Down allBlocks=100 currIdx=15 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334922 +9:10AM DBG Down allBlocks=100 currIdx=16 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334921 +9:10AM DBG Down allBlocks=100 currIdx=17 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334920 +9:10AM DBG Down allBlocks=100 currIdx=18 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334919 +9:10AM DBG Down allBlocks=100 currIdx=19 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334918 +9:10AM DBG Down allBlocks=100 currIdx=20 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334917 +9:10AM DBG Down allBlocks=100 currIdx=21 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344905,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334916 +9:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344910 PeerCount=6 +9:10AM DBG Fetching latest blocks from=344906 max=344905 to=344910 +9:10AM DBG Down allBlocks=100 currIdx=22 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344905,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334915 +9:10AM DBG Fetching older blocks from=334806 min=334856 to=334855 +9:10AM DBG Down allBlocks=100 currIdx=23 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334914 +9:10AM DBG Down allBlocks=100 currIdx=24 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334856,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334913 +9:10AM DBG Down allBlocks=100 currIdx=25 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334912 +9:10AM DBG Down allBlocks=100 currIdx=26 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334911 +9:10AM DBG Down allBlocks=100 currIdx=27 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334910 +9:10AM DBG Down allBlocks=100 currIdx=28 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334909 +9:10AM DBG Down allBlocks=100 currIdx=29 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334908 +9:10AM DBG Down allBlocks=100 currIdx=30 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334907 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Down allBlocks=100 currIdx=31 dy=35 renderedBlocks=31 windowOffset=69 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344910,"MaxBlockRetrieved":344910,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334906 +9:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344916 PeerCount=6 +9:10AM DBG Fetching latest blocks from=344911 max=344910 to=344916 +9:10AM DBG Fetching older blocks from=334756 min=334806 to=334805 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334806,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=31 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334907 +9:10AM DBG Up currIdx=30 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334908 +9:10AM DBG Up currIdx=29 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334909 +9:10AM DBG Up currIdx=28 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334910 +9:10AM DBG Up currIdx=27 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334911 +9:10AM DBG Up currIdx=26 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334912 +9:10AM DBG Up currIdx=25 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334913 +9:10AM DBG Up currIdx=24 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334914 +9:10AM DBG Up currIdx=23 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334915 +9:10AM DBG Up currIdx=22 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334916 +9:10AM DBG Up currIdx=21 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334917 +9:10AM DBG Up currIdx=20 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334918 +9:10AM DBG Up currIdx=19 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334919 +9:10AM DBG Up currIdx=18 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334920 +9:10AM DBG Up currIdx=17 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334921 +9:10AM DBG Up currIdx=16 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334922 +9:10AM DBG Up currIdx=15 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334923 +9:10AM DBG Up currIdx=14 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334924 +9:10AM DBG Up currIdx=13 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334925 +9:10AM DBG Up currIdx=12 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334926 +9:10AM DBG Up currIdx=11 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334927 +9:10AM DBG Up currIdx=10 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334928 +9:10AM DBG Up currIdx=9 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334929 +9:10AM DBG Up currIdx=8 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334930 +9:10AM DBG Up currIdx=7 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334931 +9:10AM DBG Up currIdx=6 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334932 +9:10AM DBG Up currIdx=5 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334933 +9:10AM DBG Up currIdx=4 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334934 +9:10AM DBG Up currIdx=3 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334935 +9:10AM DBG Up currIdx=2 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334936 +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334756,"PeerCount":6,"PendingCount":0} +9:10AM DBG Fetching older blocks from=334706 min=334756 to=334755 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344916,"MaxBlockRetrieved":344916,"MinBlockRetrieved":334706,"PeerCount":6,"PendingCount":0} +9:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344921 PeerCount=6 +9:10AM DBG Fetching latest blocks from=344917 max=344916 to=344921 +9:10AM DBG Fetching older blocks from=334656 min=334706 to=334705 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334706 +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334737 +9:10AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=31 windowOffset=67 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344921,"MaxBlockRetrieved":344921,"MinBlockRetrieved":334656,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334736 +9:10AM DBG Fetching older blocks from=334606 min=334656 to=334655 +9:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344927 PeerCount=6 +9:10AM DBG Fetching latest blocks from=344922 max=344921 to=344927 +9:10AM WRN Unable to append more history error="the function is currently locked" +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334606,"PeerCount":6,"PendingCount":0} +9:10AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=2 windowOffset=98 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334606,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=2 windowOffset=98 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334606,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=2 windowOffset=98 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334606,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344927 PeerCount=6 +9:10AM DBG Fetching latest blocks from=344928 max=344927 to=344927 +9:10AM DBG Fetching older blocks from=334556 min=334606 to=334605 +9:10AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=2 windowOffset=98 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334606,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=2 windowOffset=98 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=2 windowOffset=98 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=2 windowOffset=98 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=2 windowOffset=98 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Up currIdx=2 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334607 +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Up currIdx=1 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=5 windowOffset=95 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334609 +9:10AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=5 windowOffset=95 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334608 +9:10AM DBG Down allBlocks=100 currIdx=3 dy=35 renderedBlocks=5 windowOffset=95 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334607 +9:10AM DBG Down allBlocks=100 currIdx=4 dy=35 renderedBlocks=5 windowOffset=95 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=5 windowOffset=95 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=5 windowOffset=95 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=5 windowOffset=95 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=5 windowOffset=95 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=5 windowOffset=95 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=5 windowOffset=95 windowSize=31 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334606 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344927,"MaxBlockRetrieved":344927,"MinBlockRetrieved":334556,"PeerCount":6,"PendingCount":0} +9:10AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344933 PeerCount=6 +9:10AM DBG Fetching latest blocks from=344928 max=344927 to=344933 +9:10AM DBG Fetching older blocks from=334506 min=334556 to=334555 +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334506,"PeerCount":6,"PendingCount":0} +9:10AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334506,"PeerCount":6,"PendingCount":0} +9:10AM DBG Selected block changed blockNumber=334544 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334506,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334513 +9:11AM DBG Fetching older blocks from=334456 min=334506 to=334505 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=7 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334457 +9:11AM DBG Up currIdx=6 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334458 +9:11AM DBG Up currIdx=5 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334459 +9:11AM DBG Up currIdx=4 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334460 +9:11AM DBG Up currIdx=3 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334461 +9:11AM DBG Up currIdx=2 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334462 +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Up currIdx=1 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344933,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344938 PeerCount=6 +9:11AM DBG Fetching latest blocks from=344934 max=344933 to=344938 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344933,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Fetching older blocks from=334406 min=334456 to=334455 +9:11AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334456,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334486 +9:11AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334485 +9:11AM DBG Down allBlocks=100 currIdx=3 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334484 +9:11AM DBG Down allBlocks=100 currIdx=4 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334483 +9:11AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334482 +9:11AM DBG Down allBlocks=100 currIdx=6 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334481 +9:11AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334480 +9:11AM DBG Down allBlocks=100 currIdx=8 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334479 +9:11AM DBG Down allBlocks=100 currIdx=9 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334478 +9:11AM DBG Down allBlocks=100 currIdx=10 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334477 +9:11AM DBG Down allBlocks=100 currIdx=11 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334476 +9:11AM DBG Down allBlocks=100 currIdx=12 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334475 +9:11AM DBG Down allBlocks=100 currIdx=13 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334474 +9:11AM DBG Down allBlocks=100 currIdx=14 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334473 +9:11AM DBG Down allBlocks=100 currIdx=15 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334472 +9:11AM DBG Down allBlocks=100 currIdx=16 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334471 +9:11AM DBG Down allBlocks=100 currIdx=17 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334470 +9:11AM DBG Down allBlocks=100 currIdx=18 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334469 +9:11AM DBG Down allBlocks=100 currIdx=19 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334468 +9:11AM DBG Down allBlocks=100 currIdx=20 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334467 +9:11AM DBG Down allBlocks=100 currIdx=21 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334466 +9:11AM DBG Down allBlocks=100 currIdx=22 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334465 +9:11AM DBG Down allBlocks=100 currIdx=23 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334464 +9:11AM DBG Down allBlocks=100 currIdx=24 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334463 +9:11AM DBG Down allBlocks=100 currIdx=25 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334462 +9:11AM DBG Down allBlocks=100 currIdx=26 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334461 +9:11AM DBG Down allBlocks=100 currIdx=27 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334460 +9:11AM DBG Down allBlocks=100 currIdx=28 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334459 +9:11AM DBG Down allBlocks=100 currIdx=29 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334458 +9:11AM DBG Down allBlocks=100 currIdx=30 dy=35 renderedBlocks=31 windowOffset=68 windowSize=31 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334406,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334457 +9:11AM DBG Fetching older blocks from=334356 min=334406 to=334405 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344938,"MaxBlockRetrieved":344938,"MinBlockRetrieved":334356,"PeerCount":6,"PendingCount":0} +9:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344944 PeerCount=6 +9:11AM DBG Fetching latest blocks from=344939 max=344938 to=344944 +9:11AM DBG Fetching older blocks from=334306 min=334356 to=334355 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344944,"MaxBlockRetrieved":344944,"MinBlockRetrieved":334306,"PeerCount":6,"PendingCount":0} +9:11AM DBG Selected block changed blockNumber=334356 +9:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344949 PeerCount=6 +9:11AM DBG Fetching latest blocks from=344945 max=344944 to=344949 +9:11AM DBG Fetching older blocks from=334256 min=334306 to=334305 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344949,"MaxBlockRetrieved":344949,"MinBlockRetrieved":334256,"PeerCount":6,"PendingCount":0} +9:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344955 PeerCount=6 +9:11AM DBG Fetching latest blocks from=344950 max=344949 to=344955 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344955,"MaxBlockRetrieved":344949,"MinBlockRetrieved":334256,"PeerCount":6,"PendingCount":0} +9:11AM DBG Fetching older blocks from=334206 min=334256 to=334255 +9:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344960 PeerCount=6 +9:11AM DBG Fetching latest blocks from=344956 max=344955 to=344960 +9:11AM DBG Fetching older blocks from=334156 min=334206 to=334205 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344960,"MaxBlockRetrieved":344960,"MinBlockRetrieved":334206,"PeerCount":6,"PendingCount":0} +9:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344966 PeerCount=6 +9:11AM DBG Fetching latest blocks from=344961 max=344960 to=344966 +9:11AM DBG Fetching older blocks from=334106 min=334156 to=334155 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344966,"MaxBlockRetrieved":344966,"MinBlockRetrieved":334156,"PeerCount":6,"PendingCount":0} +9:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344972 PeerCount=6 +9:11AM DBG Fetching latest blocks from=344967 max=344966 to=344972 +9:11AM DBG Fetching older blocks from=334056 min=334106 to=334105 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344972,"MaxBlockRetrieved":344972,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344978 PeerCount=6 +9:11AM DBG Fetching latest blocks from=344973 max=344972 to=344978 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344978,"MaxBlockRetrieved":344978,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344983 PeerCount=6 +9:11AM DBG Fetching latest blocks from=344979 max=344978 to=344983 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344983,"MaxBlockRetrieved":344983,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:11AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344988 PeerCount=6 +9:11AM DBG Fetching latest blocks from=344984 max=344983 to=344988 +9:11AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344988,"MaxBlockRetrieved":344988,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344994 PeerCount=6 +9:12AM DBG Fetching latest blocks from=344989 max=344988 to=344994 +9:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344994,"MaxBlockRetrieved":344988,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=344999 PeerCount=6 +9:12AM DBG Fetching latest blocks from=344995 max=344994 to=344999 +9:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":344999,"MaxBlockRetrieved":344999,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345004 PeerCount=6 +9:12AM DBG Fetching latest blocks from=345000 max=344999 to=345004 +9:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345004,"MaxBlockRetrieved":345004,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345010 PeerCount=6 +9:12AM DBG Fetching latest blocks from=345005 max=345004 to=345010 +9:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345010,"MaxBlockRetrieved":345010,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345015 PeerCount=6 +9:12AM DBG Fetching latest blocks from=345011 max=345010 to=345015 +9:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345015,"MaxBlockRetrieved":345015,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345021 PeerCount=6 +9:12AM DBG Fetching latest blocks from=345016 max=345015 to=345021 +9:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345021,"MaxBlockRetrieved":345021,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345026 PeerCount=6 +9:12AM DBG Fetching latest blocks from=345022 max=345021 to=345026 +9:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345026,"MaxBlockRetrieved":345026,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345031 PeerCount=6 +9:12AM DBG Fetching latest blocks from=345027 max=345026 to=345031 +9:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345031,"MaxBlockRetrieved":345031,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345037 PeerCount=6 +9:12AM DBG Fetching latest blocks from=345032 max=345031 to=345037 +9:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345037,"MaxBlockRetrieved":345037,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345042 PeerCount=6 +9:12AM DBG Fetching latest blocks from=345038 max=345037 to=345042 +9:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345042,"MaxBlockRetrieved":345042,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:12AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345048 PeerCount=6 +9:12AM DBG Fetching latest blocks from=345043 max=345042 to=345048 +9:12AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345048,"MaxBlockRetrieved":345048,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345053 PeerCount=6 +9:13AM DBG Fetching latest blocks from=345049 max=345048 to=345053 +9:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345053,"MaxBlockRetrieved":345053,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345059 PeerCount=6 +9:13AM DBG Fetching latest blocks from=345054 max=345053 to=345059 +9:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345059,"MaxBlockRetrieved":345059,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345064 PeerCount=6 +9:13AM DBG Fetching latest blocks from=345060 max=345059 to=345064 +9:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345064,"MaxBlockRetrieved":345064,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345070 PeerCount=6 +9:13AM DBG Fetching latest blocks from=345065 max=345064 to=345070 +9:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345070,"MaxBlockRetrieved":345070,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345075 PeerCount=6 +9:13AM DBG Fetching latest blocks from=345071 max=345070 to=345075 +9:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345075,"MaxBlockRetrieved":345075,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345080 PeerCount=6 +9:13AM DBG Fetching latest blocks from=345076 max=345075 to=345080 +9:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345080,"MaxBlockRetrieved":345080,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345086 PeerCount=6 +9:13AM DBG Fetching latest blocks from=345081 max=345080 to=345086 +9:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345086,"MaxBlockRetrieved":345086,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345091 PeerCount=6 +9:13AM DBG Fetching latest blocks from=345087 max=345086 to=345091 +9:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345091,"MaxBlockRetrieved":345091,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345097 PeerCount=6 +9:13AM DBG Fetching latest blocks from=345092 max=345091 to=345097 +9:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345097,"MaxBlockRetrieved":345097,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345102 PeerCount=6 +9:13AM DBG Fetching latest blocks from=345098 max=345097 to=345102 +9:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345102,"MaxBlockRetrieved":345102,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:13AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345107 PeerCount=6 +9:13AM DBG Fetching latest blocks from=345103 max=345102 to=345107 +9:13AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345107,"MaxBlockRetrieved":345107,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345113 PeerCount=6 +9:14AM DBG Fetching latest blocks from=345108 max=345107 to=345113 +9:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345113,"MaxBlockRetrieved":345113,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345118 PeerCount=6 +9:14AM DBG Fetching latest blocks from=345114 max=345113 to=345118 +9:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345118,"MaxBlockRetrieved":345113,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345124 PeerCount=6 +9:14AM DBG Fetching latest blocks from=345119 max=345118 to=345124 +9:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345124,"MaxBlockRetrieved":345124,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345129 PeerCount=6 +9:14AM DBG Fetching latest blocks from=345125 max=345124 to=345129 +9:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345129,"MaxBlockRetrieved":345129,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345134 PeerCount=6 +9:14AM DBG Fetching latest blocks from=345130 max=345129 to=345134 +9:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345134,"MaxBlockRetrieved":345134,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345140 PeerCount=6 +9:14AM DBG Fetching latest blocks from=345135 max=345134 to=345140 +9:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345140,"MaxBlockRetrieved":345140,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345145 PeerCount=6 +9:14AM DBG Fetching latest blocks from=345141 max=345140 to=345145 +9:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345145,"MaxBlockRetrieved":345145,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345151 PeerCount=6 +9:14AM DBG Fetching latest blocks from=345146 max=345145 to=345151 +9:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345151,"MaxBlockRetrieved":345151,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345156 PeerCount=6 +9:14AM DBG Fetching latest blocks from=345152 max=345151 to=345156 +9:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345156,"MaxBlockRetrieved":345156,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345162 PeerCount=6 +9:14AM DBG Fetching latest blocks from=345157 max=345156 to=345162 +9:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345162,"MaxBlockRetrieved":345162,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:14AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345167 PeerCount=6 +9:14AM DBG Fetching latest blocks from=345163 max=345162 to=345167 +9:14AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345167,"MaxBlockRetrieved":345162,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345172 PeerCount=6 +9:15AM DBG Fetching latest blocks from=345168 max=345167 to=345172 +9:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345172,"MaxBlockRetrieved":345172,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345178 PeerCount=6 +9:15AM DBG Fetching latest blocks from=345173 max=345172 to=345178 +9:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345178,"MaxBlockRetrieved":345178,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345183 PeerCount=6 +9:15AM DBG Fetching latest blocks from=345179 max=345178 to=345183 +9:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345183,"MaxBlockRetrieved":345183,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345188 PeerCount=6 +9:15AM DBG Fetching latest blocks from=345184 max=345183 to=345188 +9:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345188,"MaxBlockRetrieved":345188,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345194 PeerCount=6 +9:15AM DBG Fetching latest blocks from=345189 max=345188 to=345194 +9:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345194,"MaxBlockRetrieved":345194,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345199 PeerCount=6 +9:15AM DBG Fetching latest blocks from=345195 max=345194 to=345199 +9:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345199,"MaxBlockRetrieved":345199,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345205 PeerCount=6 +9:15AM DBG Fetching latest blocks from=345200 max=345199 to=345205 +9:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345205,"MaxBlockRetrieved":345205,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345210 PeerCount=6 +9:15AM DBG Fetching latest blocks from=345206 max=345205 to=345210 +9:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345210,"MaxBlockRetrieved":345210,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345215 PeerCount=6 +9:15AM DBG Fetching latest blocks from=345211 max=345210 to=345215 +9:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345215,"MaxBlockRetrieved":345215,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:15AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345221 PeerCount=6 +9:15AM DBG Fetching latest blocks from=345216 max=345215 to=345221 +9:15AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345221,"MaxBlockRetrieved":345221,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345226 PeerCount=6 +9:16AM DBG Fetching latest blocks from=345222 max=345221 to=345226 +9:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345226,"MaxBlockRetrieved":345221,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345232 PeerCount=6 +9:16AM DBG Fetching latest blocks from=345227 max=345226 to=345232 +9:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345232,"MaxBlockRetrieved":345232,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345237 PeerCount=6 +9:16AM DBG Fetching latest blocks from=345233 max=345232 to=345237 +9:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345237,"MaxBlockRetrieved":345237,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345242 PeerCount=6 +9:16AM DBG Fetching latest blocks from=345238 max=345237 to=345242 +9:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345242,"MaxBlockRetrieved":345242,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345248 PeerCount=6 +9:16AM DBG Fetching latest blocks from=345243 max=345242 to=345248 +9:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345248,"MaxBlockRetrieved":345248,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345253 PeerCount=6 +9:16AM DBG Fetching latest blocks from=345249 max=345248 to=345253 +9:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345253,"MaxBlockRetrieved":345253,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345259 PeerCount=6 +9:16AM DBG Fetching latest blocks from=345254 max=345253 to=345259 +9:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345259,"MaxBlockRetrieved":345259,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345264 PeerCount=6 +9:16AM DBG Fetching latest blocks from=345260 max=345259 to=345264 +9:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345264,"MaxBlockRetrieved":345264,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345269 PeerCount=6 +9:16AM DBG Fetching latest blocks from=345265 max=345264 to=345269 +9:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345269,"MaxBlockRetrieved":345269,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345275 PeerCount=6 +9:16AM DBG Fetching latest blocks from=345270 max=345269 to=345275 +9:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345275,"MaxBlockRetrieved":345275,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:16AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345280 PeerCount=6 +9:16AM DBG Fetching latest blocks from=345276 max=345275 to=345280 +9:16AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345280,"MaxBlockRetrieved":345280,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345286 PeerCount=6 +9:17AM DBG Fetching latest blocks from=345281 max=345280 to=345286 +9:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345286,"MaxBlockRetrieved":345286,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345291 PeerCount=6 +9:17AM DBG Fetching latest blocks from=345287 max=345286 to=345291 +9:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345291,"MaxBlockRetrieved":345291,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345296 PeerCount=6 +9:17AM DBG Fetching latest blocks from=345292 max=345291 to=345296 +9:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345296,"MaxBlockRetrieved":345291,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345302 PeerCount=6 +9:17AM DBG Fetching latest blocks from=345297 max=345296 to=345302 +9:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345302,"MaxBlockRetrieved":345302,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345307 PeerCount=6 +9:17AM DBG Fetching latest blocks from=345303 max=345302 to=345307 +9:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345307,"MaxBlockRetrieved":345307,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345312 PeerCount=6 +9:17AM DBG Fetching latest blocks from=345308 max=345307 to=345312 +9:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345312,"MaxBlockRetrieved":345312,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345318 PeerCount=6 +9:17AM DBG Fetching latest blocks from=345313 max=345312 to=345318 +9:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345318,"MaxBlockRetrieved":345318,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345323 PeerCount=6 +9:17AM DBG Fetching latest blocks from=345319 max=345318 to=345323 +9:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345323,"MaxBlockRetrieved":345323,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345329 PeerCount=6 +9:17AM DBG Fetching latest blocks from=345324 max=345323 to=345329 +9:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345329,"MaxBlockRetrieved":345329,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345334 PeerCount=6 +9:17AM DBG Fetching latest blocks from=345330 max=345329 to=345334 +9:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345334,"MaxBlockRetrieved":345334,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:17AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345339 PeerCount=6 +9:17AM DBG Fetching latest blocks from=345335 max=345334 to=345339 +9:17AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345339,"MaxBlockRetrieved":345339,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345345 PeerCount=6 +9:18AM DBG Fetching latest blocks from=345340 max=345339 to=345345 +9:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345345,"MaxBlockRetrieved":345345,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345350 PeerCount=6 +9:18AM DBG Fetching latest blocks from=345346 max=345345 to=345350 +9:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345350,"MaxBlockRetrieved":345350,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345356 PeerCount=6 +9:18AM DBG Fetching latest blocks from=345351 max=345350 to=345356 +9:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345356,"MaxBlockRetrieved":345350,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345361 PeerCount=6 +9:18AM DBG Fetching latest blocks from=345357 max=345356 to=345361 +9:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345361,"MaxBlockRetrieved":345361,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345366 PeerCount=6 +9:18AM DBG Fetching latest blocks from=345362 max=345361 to=345366 +9:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345366,"MaxBlockRetrieved":345366,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345372 PeerCount=6 +9:18AM DBG Fetching latest blocks from=345367 max=345366 to=345372 +9:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345372,"MaxBlockRetrieved":345372,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345377 PeerCount=6 +9:18AM DBG Fetching latest blocks from=345373 max=345372 to=345377 +9:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345377,"MaxBlockRetrieved":345377,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345383 PeerCount=6 +9:18AM DBG Fetching latest blocks from=345378 max=345377 to=345383 +9:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345383,"MaxBlockRetrieved":345383,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345388 PeerCount=6 +9:18AM DBG Fetching latest blocks from=345384 max=345383 to=345388 +9:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345388,"MaxBlockRetrieved":345388,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345393 PeerCount=6 +9:18AM DBG Fetching latest blocks from=345389 max=345388 to=345393 +9:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345393,"MaxBlockRetrieved":345393,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:18AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345399 PeerCount=6 +9:18AM DBG Fetching latest blocks from=345394 max=345393 to=345399 +9:18AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345399,"MaxBlockRetrieved":345399,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345404 PeerCount=6 +9:19AM DBG Fetching latest blocks from=345400 max=345399 to=345404 +9:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345404,"MaxBlockRetrieved":345404,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345410 PeerCount=6 +9:19AM DBG Fetching latest blocks from=345405 max=345404 to=345410 +9:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345410,"MaxBlockRetrieved":345410,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345415 PeerCount=6 +9:19AM DBG Fetching latest blocks from=345411 max=345410 to=345415 +9:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345415,"MaxBlockRetrieved":345415,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345420 PeerCount=6 +9:19AM DBG Fetching latest blocks from=345416 max=345415 to=345420 +9:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345420,"MaxBlockRetrieved":345420,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345431 PeerCount=6 +9:19AM DBG Fetching latest blocks from=345421 max=345420 to=345431 +9:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345431,"MaxBlockRetrieved":345431,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345436 PeerCount=6 +9:19AM DBG Fetching latest blocks from=345432 max=345431 to=345436 +9:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345436,"MaxBlockRetrieved":345436,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345442 PeerCount=6 +9:19AM DBG Fetching latest blocks from=345437 max=345436 to=345442 +9:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345442,"MaxBlockRetrieved":345442,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345447 PeerCount=6 +9:19AM DBG Fetching latest blocks from=345443 max=345442 to=345447 +9:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345447,"MaxBlockRetrieved":345447,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345453 PeerCount=6 +9:19AM DBG Fetching latest blocks from=345448 max=345447 to=345453 +9:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345453,"MaxBlockRetrieved":345453,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:19AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345458 PeerCount=6 +9:19AM DBG Fetching latest blocks from=345454 max=345453 to=345458 +9:19AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345458,"MaxBlockRetrieved":345458,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345463 PeerCount=6 +9:20AM DBG Fetching latest blocks from=345459 max=345458 to=345463 +9:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345463,"MaxBlockRetrieved":345463,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345469 PeerCount=6 +9:20AM DBG Fetching latest blocks from=345464 max=345463 to=345469 +9:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345469,"MaxBlockRetrieved":345469,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345474 PeerCount=6 +9:20AM DBG Fetching latest blocks from=345470 max=345469 to=345474 +9:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345474,"MaxBlockRetrieved":345474,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345480 PeerCount=6 +9:20AM DBG Fetching latest blocks from=345475 max=345474 to=345480 +9:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345480,"MaxBlockRetrieved":345480,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345485 PeerCount=6 +9:20AM DBG Fetching latest blocks from=345481 max=345480 to=345485 +9:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345485,"MaxBlockRetrieved":345480,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345490 PeerCount=6 +9:20AM DBG Fetching latest blocks from=345486 max=345485 to=345490 +9:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345490,"MaxBlockRetrieved":345490,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345496 PeerCount=6 +9:20AM DBG Fetching latest blocks from=345491 max=345490 to=345496 +9:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345496,"MaxBlockRetrieved":345496,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345501 PeerCount=6 +9:20AM DBG Fetching latest blocks from=345497 max=345496 to=345501 +9:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345501,"MaxBlockRetrieved":345501,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345507 PeerCount=6 +9:20AM DBG Fetching latest blocks from=345502 max=345501 to=345507 +9:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345507,"MaxBlockRetrieved":345507,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:20AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345512 PeerCount=6 +9:20AM DBG Fetching latest blocks from=345508 max=345507 to=345512 +9:20AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345512,"MaxBlockRetrieved":345512,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345517 PeerCount=6 +9:21AM DBG Fetching latest blocks from=345513 max=345512 to=345517 +9:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345517,"MaxBlockRetrieved":345517,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345523 PeerCount=6 +9:21AM DBG Fetching latest blocks from=345518 max=345517 to=345523 +9:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345523,"MaxBlockRetrieved":345523,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345528 PeerCount=6 +9:21AM DBG Fetching latest blocks from=345524 max=345523 to=345528 +9:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345528,"MaxBlockRetrieved":345528,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345534 PeerCount=6 +9:21AM DBG Fetching latest blocks from=345529 max=345528 to=345534 +9:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345534,"MaxBlockRetrieved":345534,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345539 PeerCount=6 +9:21AM DBG Fetching latest blocks from=345535 max=345534 to=345539 +9:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345539,"MaxBlockRetrieved":345539,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345544 PeerCount=6 +9:21AM DBG Fetching latest blocks from=345540 max=345539 to=345544 +9:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345544,"MaxBlockRetrieved":345544,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345550 PeerCount=6 +9:21AM DBG Fetching latest blocks from=345545 max=345544 to=345550 +9:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345550,"MaxBlockRetrieved":345550,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345555 PeerCount=6 +9:21AM DBG Fetching latest blocks from=345551 max=345550 to=345555 +9:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345555,"MaxBlockRetrieved":345555,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345560 PeerCount=6 +9:21AM DBG Fetching latest blocks from=345556 max=345555 to=345560 +9:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345560,"MaxBlockRetrieved":345560,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345566 PeerCount=6 +9:21AM DBG Fetching latest blocks from=345561 max=345560 to=345566 +9:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345566,"MaxBlockRetrieved":345560,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:21AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345571 PeerCount=6 +9:21AM DBG Fetching latest blocks from=345567 max=345566 to=345571 +9:21AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345571,"MaxBlockRetrieved":345571,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345577 PeerCount=6 +9:22AM DBG Fetching latest blocks from=345572 max=345571 to=345577 +9:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345577,"MaxBlockRetrieved":345577,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345582 PeerCount=6 +9:22AM DBG Fetching latest blocks from=345578 max=345577 to=345582 +9:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345582,"MaxBlockRetrieved":345582,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345587 PeerCount=6 +9:22AM DBG Fetching latest blocks from=345583 max=345582 to=345587 +9:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345587,"MaxBlockRetrieved":345587,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345593 PeerCount=6 +9:22AM DBG Fetching latest blocks from=345588 max=345587 to=345593 +9:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345593,"MaxBlockRetrieved":345593,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345598 PeerCount=6 +9:22AM DBG Fetching latest blocks from=345594 max=345593 to=345598 +9:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345598,"MaxBlockRetrieved":345598,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345604 PeerCount=6 +9:22AM DBG Fetching latest blocks from=345599 max=345598 to=345604 +9:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345604,"MaxBlockRetrieved":345604,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345609 PeerCount=6 +9:22AM DBG Fetching latest blocks from=345605 max=345604 to=345609 +9:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345609,"MaxBlockRetrieved":345609,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345614 PeerCount=6 +9:22AM DBG Fetching latest blocks from=345610 max=345609 to=345614 +9:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345614,"MaxBlockRetrieved":345614,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345620 PeerCount=6 +9:22AM DBG Fetching latest blocks from=345615 max=345614 to=345620 +9:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345620,"MaxBlockRetrieved":345620,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345625 PeerCount=6 +9:22AM DBG Fetching latest blocks from=345621 max=345620 to=345625 +9:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345625,"MaxBlockRetrieved":345625,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:22AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345630 PeerCount=6 +9:22AM DBG Fetching latest blocks from=345626 max=345625 to=345630 +9:22AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345630,"MaxBlockRetrieved":345630,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345636 PeerCount=6 +9:23AM DBG Fetching latest blocks from=345631 max=345630 to=345636 +9:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345636,"MaxBlockRetrieved":345636,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345641 PeerCount=6 +9:23AM DBG Fetching latest blocks from=345637 max=345636 to=345641 +9:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345641,"MaxBlockRetrieved":345641,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345647 PeerCount=6 +9:23AM DBG Fetching latest blocks from=345642 max=345641 to=345647 +9:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345647,"MaxBlockRetrieved":345647,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345652 PeerCount=6 +9:23AM DBG Fetching latest blocks from=345648 max=345647 to=345652 +9:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345652,"MaxBlockRetrieved":345652,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345657 PeerCount=6 +9:23AM DBG Fetching latest blocks from=345653 max=345652 to=345657 +9:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345657,"MaxBlockRetrieved":345657,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345663 PeerCount=6 +9:23AM DBG Fetching latest blocks from=345658 max=345657 to=345663 +9:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345663,"MaxBlockRetrieved":345663,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345668 PeerCount=6 +9:23AM DBG Fetching latest blocks from=345664 max=345663 to=345668 +9:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345668,"MaxBlockRetrieved":345668,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345674 PeerCount=6 +9:23AM DBG Fetching latest blocks from=345669 max=345668 to=345674 +9:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345674,"MaxBlockRetrieved":345674,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345679 PeerCount=6 +9:23AM DBG Fetching latest blocks from=345675 max=345674 to=345679 +9:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345679,"MaxBlockRetrieved":345679,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:23AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345684 PeerCount=6 +9:23AM DBG Fetching latest blocks from=345680 max=345679 to=345684 +9:23AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345684,"MaxBlockRetrieved":345684,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345697 PeerCount=6 +9:24AM DBG Fetching latest blocks from=345685 max=345684 to=345697 +9:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345697,"MaxBlockRetrieved":345697,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345703 PeerCount=6 +9:24AM DBG Fetching latest blocks from=345698 max=345697 to=345703 +9:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345703,"MaxBlockRetrieved":345703,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345708 PeerCount=6 +9:24AM DBG Fetching latest blocks from=345704 max=345703 to=345708 +9:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345708,"MaxBlockRetrieved":345708,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345714 PeerCount=6 +9:24AM DBG Fetching latest blocks from=345709 max=345708 to=345714 +9:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345714,"MaxBlockRetrieved":345714,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345719 PeerCount=6 +9:24AM DBG Fetching latest blocks from=345715 max=345714 to=345719 +9:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345719,"MaxBlockRetrieved":345719,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345724 PeerCount=6 +9:24AM DBG Fetching latest blocks from=345720 max=345719 to=345724 +9:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345724,"MaxBlockRetrieved":345724,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345730 PeerCount=6 +9:24AM DBG Fetching latest blocks from=345725 max=345724 to=345730 +9:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345730,"MaxBlockRetrieved":345730,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345735 PeerCount=6 +9:24AM DBG Fetching latest blocks from=345731 max=345730 to=345735 +9:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345735,"MaxBlockRetrieved":345730,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345740 PeerCount=6 +9:24AM DBG Fetching latest blocks from=345736 max=345735 to=345740 +9:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345740,"MaxBlockRetrieved":345740,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:24AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345746 PeerCount=6 +9:24AM DBG Fetching latest blocks from=345741 max=345740 to=345746 +9:24AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345746,"MaxBlockRetrieved":345746,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345751 PeerCount=6 +9:25AM DBG Fetching latest blocks from=345747 max=345746 to=345751 +9:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345751,"MaxBlockRetrieved":345751,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345757 PeerCount=6 +9:25AM DBG Fetching latest blocks from=345752 max=345751 to=345757 +9:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345757,"MaxBlockRetrieved":345757,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345762 PeerCount=6 +9:25AM DBG Fetching latest blocks from=345758 max=345757 to=345762 +9:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345762,"MaxBlockRetrieved":345762,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345767 PeerCount=6 +9:25AM DBG Fetching latest blocks from=345763 max=345762 to=345767 +9:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345767,"MaxBlockRetrieved":345767,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345773 PeerCount=6 +9:25AM DBG Fetching latest blocks from=345768 max=345767 to=345773 +9:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345773,"MaxBlockRetrieved":345773,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345778 PeerCount=6 +9:25AM DBG Fetching latest blocks from=345774 max=345773 to=345778 +9:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345778,"MaxBlockRetrieved":345778,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345790 PeerCount=6 +9:25AM DBG Fetching latest blocks from=345779 max=345778 to=345790 +9:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345790,"MaxBlockRetrieved":345778,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345795 PeerCount=6 +9:25AM DBG Fetching latest blocks from=345791 max=345790 to=345795 +9:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345795,"MaxBlockRetrieved":345795,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345800 PeerCount=6 +9:25AM DBG Fetching latest blocks from=345796 max=345795 to=345800 +9:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345800,"MaxBlockRetrieved":345795,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:25AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345806 PeerCount=6 +9:25AM DBG Fetching latest blocks from=345801 max=345800 to=345806 +9:25AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345806,"MaxBlockRetrieved":345806,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345811 PeerCount=6 +9:26AM DBG Fetching latest blocks from=345807 max=345806 to=345811 +9:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345811,"MaxBlockRetrieved":345811,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345817 PeerCount=6 +9:26AM DBG Fetching latest blocks from=345812 max=345811 to=345817 +9:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345817,"MaxBlockRetrieved":345817,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345822 PeerCount=6 +9:26AM DBG Fetching latest blocks from=345818 max=345817 to=345822 +9:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345822,"MaxBlockRetrieved":345822,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345827 PeerCount=6 +9:26AM DBG Fetching latest blocks from=345823 max=345822 to=345827 +9:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345827,"MaxBlockRetrieved":345827,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345833 PeerCount=6 +9:26AM DBG Fetching latest blocks from=345828 max=345827 to=345833 +9:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345833,"MaxBlockRetrieved":345833,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345838 PeerCount=6 +9:26AM DBG Fetching latest blocks from=345834 max=345833 to=345838 +9:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345838,"MaxBlockRetrieved":345838,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345844 PeerCount=6 +9:26AM DBG Fetching latest blocks from=345839 max=345838 to=345844 +9:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345844,"MaxBlockRetrieved":345844,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345849 PeerCount=6 +9:26AM DBG Fetching latest blocks from=345845 max=345844 to=345849 +9:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345849,"MaxBlockRetrieved":345849,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345854 PeerCount=6 +9:26AM DBG Fetching latest blocks from=345850 max=345849 to=345854 +9:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345854,"MaxBlockRetrieved":345854,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345860 PeerCount=6 +9:26AM DBG Fetching latest blocks from=345855 max=345854 to=345860 +9:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345860,"MaxBlockRetrieved":345854,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:26AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345865 PeerCount=6 +9:26AM DBG Fetching latest blocks from=345861 max=345860 to=345865 +9:26AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345865,"MaxBlockRetrieved":345865,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345870 PeerCount=6 +9:27AM DBG Fetching latest blocks from=345866 max=345865 to=345870 +9:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345870,"MaxBlockRetrieved":345870,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345876 PeerCount=6 +9:27AM DBG Fetching latest blocks from=345871 max=345870 to=345876 +9:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345876,"MaxBlockRetrieved":345876,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345881 PeerCount=6 +9:27AM DBG Fetching latest blocks from=345877 max=345876 to=345881 +9:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345881,"MaxBlockRetrieved":345881,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345887 PeerCount=6 +9:27AM DBG Fetching latest blocks from=345882 max=345881 to=345887 +9:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345887,"MaxBlockRetrieved":345887,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345892 PeerCount=6 +9:27AM DBG Fetching latest blocks from=345888 max=345887 to=345892 +9:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345892,"MaxBlockRetrieved":345892,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345897 PeerCount=6 +9:27AM DBG Fetching latest blocks from=345893 max=345892 to=345897 +9:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345897,"MaxBlockRetrieved":345897,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345903 PeerCount=6 +9:27AM DBG Fetching latest blocks from=345898 max=345897 to=345903 +9:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345903,"MaxBlockRetrieved":345903,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345908 PeerCount=6 +9:27AM DBG Fetching latest blocks from=345904 max=345903 to=345908 +9:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345908,"MaxBlockRetrieved":345908,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345914 PeerCount=6 +9:27AM DBG Fetching latest blocks from=345909 max=345908 to=345914 +9:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345914,"MaxBlockRetrieved":345914,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345919 PeerCount=6 +9:27AM DBG Fetching latest blocks from=345915 max=345914 to=345919 +9:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345919,"MaxBlockRetrieved":345919,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:27AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345924 PeerCount=6 +9:27AM DBG Fetching latest blocks from=345920 max=345919 to=345924 +9:27AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345924,"MaxBlockRetrieved":345924,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345930 PeerCount=6 +9:28AM DBG Fetching latest blocks from=345925 max=345924 to=345930 +9:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345930,"MaxBlockRetrieved":345924,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345935 PeerCount=6 +9:28AM DBG Fetching latest blocks from=345931 max=345930 to=345935 +9:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345935,"MaxBlockRetrieved":345935,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345941 PeerCount=6 +9:28AM DBG Fetching latest blocks from=345936 max=345935 to=345941 +9:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345941,"MaxBlockRetrieved":345941,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345946 PeerCount=6 +9:28AM DBG Fetching latest blocks from=345942 max=345941 to=345946 +9:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345946,"MaxBlockRetrieved":345946,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345951 PeerCount=6 +9:28AM DBG Fetching latest blocks from=345947 max=345946 to=345951 +9:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345951,"MaxBlockRetrieved":345951,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345957 PeerCount=6 +9:28AM DBG Fetching latest blocks from=345952 max=345951 to=345957 +9:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345957,"MaxBlockRetrieved":345957,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345962 PeerCount=6 +9:28AM DBG Fetching latest blocks from=345958 max=345957 to=345962 +9:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345962,"MaxBlockRetrieved":345962,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345968 PeerCount=6 +9:28AM DBG Fetching latest blocks from=345963 max=345962 to=345968 +9:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345968,"MaxBlockRetrieved":345968,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345973 PeerCount=6 +9:28AM DBG Fetching latest blocks from=345969 max=345968 to=345973 +9:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345973,"MaxBlockRetrieved":345968,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345979 PeerCount=6 +9:28AM DBG Fetching latest blocks from=345974 max=345973 to=345979 +9:28AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345979,"MaxBlockRetrieved":345979,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:28AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345984 PeerCount=6 +9:28AM DBG Fetching latest blocks from=345980 max=345979 to=345984 +9:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345984,"MaxBlockRetrieved":345984,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345990 PeerCount=6 +9:29AM DBG Fetching latest blocks from=345985 max=345984 to=345990 +9:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345990,"MaxBlockRetrieved":345990,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=345995 PeerCount=6 +9:29AM DBG Fetching latest blocks from=345991 max=345990 to=345995 +9:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":345995,"MaxBlockRetrieved":345995,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346000 PeerCount=6 +9:29AM DBG Fetching latest blocks from=345996 max=345995 to=346000 +9:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346000,"MaxBlockRetrieved":346000,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346006 PeerCount=6 +9:29AM DBG Fetching latest blocks from=346001 max=346000 to=346006 +9:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346006,"MaxBlockRetrieved":346006,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346011 PeerCount=6 +9:29AM DBG Fetching latest blocks from=346007 max=346006 to=346011 +9:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346011,"MaxBlockRetrieved":346011,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346017 PeerCount=6 +9:29AM DBG Fetching latest blocks from=346012 max=346011 to=346017 +9:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346017,"MaxBlockRetrieved":346017,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346022 PeerCount=6 +9:29AM DBG Fetching latest blocks from=346018 max=346017 to=346022 +9:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346022,"MaxBlockRetrieved":346022,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346027 PeerCount=6 +9:29AM DBG Fetching latest blocks from=346023 max=346022 to=346027 +9:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346027,"MaxBlockRetrieved":346027,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346033 PeerCount=6 +9:29AM DBG Fetching latest blocks from=346028 max=346027 to=346033 +9:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346033,"MaxBlockRetrieved":346033,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:29AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346038 PeerCount=6 +9:29AM DBG Fetching latest blocks from=346034 max=346033 to=346038 +9:29AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346038,"MaxBlockRetrieved":346038,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346043 PeerCount=6 +9:30AM DBG Fetching latest blocks from=346039 max=346038 to=346043 +9:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346043,"MaxBlockRetrieved":346043,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346049 PeerCount=6 +9:30AM DBG Fetching latest blocks from=346044 max=346043 to=346049 +9:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346049,"MaxBlockRetrieved":346049,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346054 PeerCount=6 +9:30AM DBG Fetching latest blocks from=346050 max=346049 to=346054 +9:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346054,"MaxBlockRetrieved":346049,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346060 PeerCount=6 +9:30AM DBG Fetching latest blocks from=346055 max=346054 to=346060 +9:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346060,"MaxBlockRetrieved":346060,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346065 PeerCount=6 +9:30AM DBG Fetching latest blocks from=346061 max=346060 to=346065 +9:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346065,"MaxBlockRetrieved":346065,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346070 PeerCount=6 +9:30AM DBG Fetching latest blocks from=346066 max=346065 to=346070 +9:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346070,"MaxBlockRetrieved":346070,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346076 PeerCount=6 +9:30AM DBG Fetching latest blocks from=346071 max=346070 to=346076 +9:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346076,"MaxBlockRetrieved":346076,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346081 PeerCount=6 +9:30AM DBG Fetching latest blocks from=346077 max=346076 to=346081 +9:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346081,"MaxBlockRetrieved":346081,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346087 PeerCount=6 +9:30AM DBG Fetching latest blocks from=346082 max=346081 to=346087 +9:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346087,"MaxBlockRetrieved":346087,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346092 PeerCount=6 +9:30AM DBG Fetching latest blocks from=346088 max=346087 to=346092 +9:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346092,"MaxBlockRetrieved":346092,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:30AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346097 PeerCount=6 +9:30AM DBG Fetching latest blocks from=346093 max=346092 to=346097 +9:30AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346097,"MaxBlockRetrieved":346097,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346103 PeerCount=6 +9:31AM DBG Fetching latest blocks from=346098 max=346097 to=346103 +9:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346103,"MaxBlockRetrieved":346103,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346108 PeerCount=6 +9:31AM DBG Fetching latest blocks from=346104 max=346103 to=346108 +9:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346108,"MaxBlockRetrieved":346108,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346114 PeerCount=6 +9:31AM DBG Fetching latest blocks from=346109 max=346108 to=346114 +9:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346114,"MaxBlockRetrieved":346114,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346119 PeerCount=6 +9:31AM DBG Fetching latest blocks from=346115 max=346114 to=346119 +9:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346119,"MaxBlockRetrieved":346119,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346124 PeerCount=6 +9:31AM DBG Fetching latest blocks from=346120 max=346119 to=346124 +9:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346124,"MaxBlockRetrieved":346119,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346130 PeerCount=6 +9:31AM DBG Fetching latest blocks from=346125 max=346124 to=346130 +9:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346130,"MaxBlockRetrieved":346130,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346135 PeerCount=6 +9:31AM DBG Fetching latest blocks from=346131 max=346130 to=346135 +9:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346135,"MaxBlockRetrieved":346135,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346140 PeerCount=6 +9:31AM DBG Fetching latest blocks from=346136 max=346135 to=346140 +9:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346140,"MaxBlockRetrieved":346140,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346146 PeerCount=6 +9:31AM DBG Fetching latest blocks from=346141 max=346140 to=346146 +9:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346146,"MaxBlockRetrieved":346146,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346151 PeerCount=6 +9:31AM DBG Fetching latest blocks from=346147 max=346146 to=346151 +9:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346151,"MaxBlockRetrieved":346151,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:31AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346157 PeerCount=6 +9:31AM DBG Fetching latest blocks from=346152 max=346151 to=346157 +9:31AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346157,"MaxBlockRetrieved":346157,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346163 PeerCount=6 +9:32AM DBG Fetching latest blocks from=346158 max=346157 to=346163 +9:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346163,"MaxBlockRetrieved":346163,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346168 PeerCount=6 +9:32AM DBG Fetching latest blocks from=346164 max=346163 to=346168 +9:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346168,"MaxBlockRetrieved":346168,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346173 PeerCount=6 +9:32AM DBG Fetching latest blocks from=346169 max=346168 to=346173 +9:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346173,"MaxBlockRetrieved":346173,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346179 PeerCount=6 +9:32AM DBG Fetching latest blocks from=346174 max=346173 to=346179 +9:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346179,"MaxBlockRetrieved":346179,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346184 PeerCount=6 +9:32AM DBG Fetching latest blocks from=346180 max=346179 to=346184 +9:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346184,"MaxBlockRetrieved":346184,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346189 PeerCount=6 +9:32AM DBG Fetching latest blocks from=346185 max=346184 to=346189 +9:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346189,"MaxBlockRetrieved":346184,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346195 PeerCount=6 +9:32AM DBG Fetching latest blocks from=346190 max=346189 to=346195 +9:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346195,"MaxBlockRetrieved":346195,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346200 PeerCount=6 +9:32AM DBG Fetching latest blocks from=346196 max=346195 to=346200 +9:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346200,"MaxBlockRetrieved":346200,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346206 PeerCount=6 +9:32AM DBG Fetching latest blocks from=346201 max=346200 to=346206 +9:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346206,"MaxBlockRetrieved":346206,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346211 PeerCount=6 +9:32AM DBG Fetching latest blocks from=346207 max=346206 to=346211 +9:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346211,"MaxBlockRetrieved":346211,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:32AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346216 PeerCount=6 +9:32AM DBG Fetching latest blocks from=346212 max=346211 to=346216 +9:32AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346216,"MaxBlockRetrieved":346216,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346222 PeerCount=6 +9:33AM DBG Fetching latest blocks from=346217 max=346216 to=346222 +9:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346222,"MaxBlockRetrieved":346222,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346227 PeerCount=6 +9:33AM DBG Fetching latest blocks from=346223 max=346222 to=346227 +9:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346227,"MaxBlockRetrieved":346227,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346233 PeerCount=6 +9:33AM DBG Fetching latest blocks from=346228 max=346227 to=346233 +9:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346233,"MaxBlockRetrieved":346233,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346238 PeerCount=6 +9:33AM DBG Fetching latest blocks from=346234 max=346233 to=346238 +9:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346238,"MaxBlockRetrieved":346238,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346243 PeerCount=6 +9:33AM DBG Fetching latest blocks from=346239 max=346238 to=346243 +9:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346243,"MaxBlockRetrieved":346243,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346249 PeerCount=6 +9:33AM DBG Fetching latest blocks from=346244 max=346243 to=346249 +9:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346249,"MaxBlockRetrieved":346249,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346254 PeerCount=6 +9:33AM DBG Fetching latest blocks from=346250 max=346249 to=346254 +9:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346254,"MaxBlockRetrieved":346254,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346260 PeerCount=6 +9:33AM DBG Fetching latest blocks from=346255 max=346254 to=346260 +9:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346260,"MaxBlockRetrieved":346254,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346265 PeerCount=6 +9:33AM DBG Fetching latest blocks from=346261 max=346260 to=346265 +9:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346265,"MaxBlockRetrieved":346265,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346270 PeerCount=6 +9:33AM DBG Fetching latest blocks from=346266 max=346265 to=346270 +9:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346270,"MaxBlockRetrieved":346270,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:33AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346276 PeerCount=6 +9:33AM DBG Fetching latest blocks from=346271 max=346270 to=346276 +9:33AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346276,"MaxBlockRetrieved":346276,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346281 PeerCount=6 +9:34AM DBG Fetching latest blocks from=346277 max=346276 to=346281 +9:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346281,"MaxBlockRetrieved":346281,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346287 PeerCount=6 +9:34AM DBG Fetching latest blocks from=346282 max=346281 to=346287 +9:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346287,"MaxBlockRetrieved":346287,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346292 PeerCount=6 +9:34AM DBG Fetching latest blocks from=346288 max=346287 to=346292 +9:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346292,"MaxBlockRetrieved":346292,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346297 PeerCount=6 +9:34AM DBG Fetching latest blocks from=346293 max=346292 to=346297 +9:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346297,"MaxBlockRetrieved":346292,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346303 PeerCount=6 +9:34AM DBG Fetching latest blocks from=346298 max=346297 to=346303 +9:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346303,"MaxBlockRetrieved":346303,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346308 PeerCount=6 +9:34AM DBG Fetching latest blocks from=346304 max=346303 to=346308 +9:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346308,"MaxBlockRetrieved":346308,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346314 PeerCount=6 +9:34AM DBG Fetching latest blocks from=346309 max=346308 to=346314 +9:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346314,"MaxBlockRetrieved":346314,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346319 PeerCount=6 +9:34AM DBG Fetching latest blocks from=346315 max=346314 to=346319 +9:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346319,"MaxBlockRetrieved":346319,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346324 PeerCount=6 +9:34AM DBG Fetching latest blocks from=346320 max=346319 to=346324 +9:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346324,"MaxBlockRetrieved":346324,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:34AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346330 PeerCount=6 +9:34AM DBG Fetching latest blocks from=346325 max=346324 to=346330 +9:34AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346330,"MaxBlockRetrieved":346330,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346335 PeerCount=6 +9:35AM DBG Fetching latest blocks from=346331 max=346330 to=346335 +9:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346335,"MaxBlockRetrieved":346335,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346341 PeerCount=6 +9:35AM DBG Fetching latest blocks from=346336 max=346335 to=346341 +9:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346341,"MaxBlockRetrieved":346341,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346346 PeerCount=6 +9:35AM DBG Fetching latest blocks from=346342 max=346341 to=346346 +9:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346346,"MaxBlockRetrieved":346346,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346351 PeerCount=6 +9:35AM DBG Fetching latest blocks from=346347 max=346346 to=346351 +9:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346351,"MaxBlockRetrieved":346351,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346360 PeerCount=6 +9:35AM DBG Fetching latest blocks from=346352 max=346351 to=346360 +9:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346360,"MaxBlockRetrieved":346360,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346365 PeerCount=6 +9:35AM DBG Fetching latest blocks from=346361 max=346360 to=346365 +9:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346365,"MaxBlockRetrieved":346365,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346371 PeerCount=6 +9:35AM DBG Fetching latest blocks from=346366 max=346365 to=346371 +9:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346371,"MaxBlockRetrieved":346371,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346376 PeerCount=6 +9:35AM DBG Fetching latest blocks from=346372 max=346371 to=346376 +9:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346376,"MaxBlockRetrieved":346376,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346381 PeerCount=6 +9:35AM DBG Fetching latest blocks from=346377 max=346376 to=346381 +9:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346381,"MaxBlockRetrieved":346381,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346387 PeerCount=6 +9:35AM DBG Fetching latest blocks from=346382 max=346381 to=346387 +9:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346387,"MaxBlockRetrieved":346387,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:35AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346392 PeerCount=6 +9:35AM DBG Fetching latest blocks from=346388 max=346387 to=346392 +9:35AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346392,"MaxBlockRetrieved":346392,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346398 PeerCount=6 +9:36AM DBG Fetching latest blocks from=346393 max=346392 to=346398 +9:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346398,"MaxBlockRetrieved":346392,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346403 PeerCount=6 +9:36AM DBG Fetching latest blocks from=346399 max=346398 to=346403 +9:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346403,"MaxBlockRetrieved":346403,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346409 PeerCount=6 +9:36AM DBG Fetching latest blocks from=346404 max=346403 to=346409 +9:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346409,"MaxBlockRetrieved":346409,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346416 PeerCount=6 +9:36AM DBG Fetching latest blocks from=346410 max=346409 to=346416 +9:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346416,"MaxBlockRetrieved":346416,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346423 PeerCount=6 +9:36AM DBG Fetching latest blocks from=346417 max=346416 to=346423 +9:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346423,"MaxBlockRetrieved":346423,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346429 PeerCount=6 +9:36AM DBG Fetching latest blocks from=346424 max=346423 to=346429 +9:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346429,"MaxBlockRetrieved":346429,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346435 PeerCount=6 +9:36AM DBG Fetching latest blocks from=346430 max=346429 to=346435 +9:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346435,"MaxBlockRetrieved":346435,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346442 PeerCount=6 +9:36AM DBG Fetching latest blocks from=346436 max=346435 to=346442 +9:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346442,"MaxBlockRetrieved":346442,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:36AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346448 PeerCount=6 +9:36AM DBG Fetching latest blocks from=346443 max=346442 to=346448 +9:36AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346448,"MaxBlockRetrieved":346448,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346453 PeerCount=6 +9:37AM DBG Fetching latest blocks from=346449 max=346448 to=346453 +9:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346453,"MaxBlockRetrieved":346453,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346459 PeerCount=6 +9:37AM DBG Fetching latest blocks from=346454 max=346453 to=346459 +9:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346459,"MaxBlockRetrieved":346459,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346464 PeerCount=6 +9:37AM DBG Fetching latest blocks from=346460 max=346459 to=346464 +9:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346464,"MaxBlockRetrieved":346464,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346470 PeerCount=6 +9:37AM DBG Fetching latest blocks from=346465 max=346464 to=346470 +9:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346470,"MaxBlockRetrieved":346470,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346475 PeerCount=6 +9:37AM DBG Fetching latest blocks from=346471 max=346470 to=346475 +9:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346475,"MaxBlockRetrieved":346475,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346481 PeerCount=6 +9:37AM DBG Fetching latest blocks from=346476 max=346475 to=346481 +9:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346481,"MaxBlockRetrieved":346481,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346486 PeerCount=6 +9:37AM DBG Fetching latest blocks from=346482 max=346481 to=346486 +9:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346486,"MaxBlockRetrieved":346486,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346492 PeerCount=6 +9:37AM DBG Fetching latest blocks from=346487 max=346486 to=346492 +9:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346492,"MaxBlockRetrieved":346492,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346497 PeerCount=6 +9:37AM DBG Fetching latest blocks from=346493 max=346492 to=346497 +9:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346497,"MaxBlockRetrieved":346497,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346502 PeerCount=6 +9:37AM DBG Fetching latest blocks from=346498 max=346497 to=346502 +9:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346502,"MaxBlockRetrieved":346502,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:37AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346508 PeerCount=6 +9:37AM DBG Fetching latest blocks from=346503 max=346502 to=346508 +9:37AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346508,"MaxBlockRetrieved":346508,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346513 PeerCount=6 +9:38AM DBG Fetching latest blocks from=346509 max=346508 to=346513 +9:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346513,"MaxBlockRetrieved":346513,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346518 PeerCount=6 +9:38AM DBG Fetching latest blocks from=346514 max=346513 to=346518 +9:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346518,"MaxBlockRetrieved":346518,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346524 PeerCount=6 +9:38AM DBG Fetching latest blocks from=346519 max=346518 to=346524 +9:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346524,"MaxBlockRetrieved":346524,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346529 PeerCount=6 +9:38AM DBG Fetching latest blocks from=346525 max=346524 to=346529 +9:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346529,"MaxBlockRetrieved":346529,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346535 PeerCount=6 +9:38AM DBG Fetching latest blocks from=346530 max=346529 to=346535 +9:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346535,"MaxBlockRetrieved":346529,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346540 PeerCount=6 +9:38AM DBG Fetching latest blocks from=346536 max=346535 to=346540 +9:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346540,"MaxBlockRetrieved":346540,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346546 PeerCount=6 +9:38AM DBG Fetching latest blocks from=346541 max=346540 to=346546 +9:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346546,"MaxBlockRetrieved":346546,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346551 PeerCount=6 +9:38AM DBG Fetching latest blocks from=346547 max=346546 to=346551 +9:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346551,"MaxBlockRetrieved":346551,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346556 PeerCount=6 +9:38AM DBG Fetching latest blocks from=346552 max=346551 to=346556 +9:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346556,"MaxBlockRetrieved":346556,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346562 PeerCount=6 +9:38AM DBG Fetching latest blocks from=346557 max=346556 to=346562 +9:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346562,"MaxBlockRetrieved":346562,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:38AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346567 PeerCount=6 +9:38AM DBG Fetching latest blocks from=346563 max=346562 to=346567 +9:38AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346567,"MaxBlockRetrieved":346567,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346573 PeerCount=6 +9:39AM DBG Fetching latest blocks from=346568 max=346567 to=346573 +9:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346573,"MaxBlockRetrieved":346573,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346578 PeerCount=6 +9:39AM DBG Fetching latest blocks from=346574 max=346573 to=346578 +9:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346578,"MaxBlockRetrieved":346578,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346583 PeerCount=6 +9:39AM DBG Fetching latest blocks from=346579 max=346578 to=346583 +9:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346583,"MaxBlockRetrieved":346583,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346589 PeerCount=6 +9:39AM DBG Fetching latest blocks from=346584 max=346583 to=346589 +9:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346589,"MaxBlockRetrieved":346589,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346594 PeerCount=6 +9:39AM DBG Fetching latest blocks from=346590 max=346589 to=346594 +9:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346594,"MaxBlockRetrieved":346594,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346599 PeerCount=6 +9:39AM DBG Fetching latest blocks from=346595 max=346594 to=346599 +9:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346599,"MaxBlockRetrieved":346599,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346605 PeerCount=6 +9:39AM DBG Fetching latest blocks from=346600 max=346599 to=346605 +9:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346605,"MaxBlockRetrieved":346599,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346610 PeerCount=6 +9:39AM DBG Fetching latest blocks from=346606 max=346605 to=346610 +9:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346610,"MaxBlockRetrieved":346610,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346616 PeerCount=6 +9:39AM DBG Fetching latest blocks from=346611 max=346610 to=346616 +9:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346616,"MaxBlockRetrieved":346616,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346621 PeerCount=6 +9:39AM DBG Fetching latest blocks from=346617 max=346616 to=346621 +9:39AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346621,"MaxBlockRetrieved":346621,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:39AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346626 PeerCount=6 +9:39AM DBG Fetching latest blocks from=346622 max=346621 to=346626 +9:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346626,"MaxBlockRetrieved":346626,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346632 PeerCount=6 +9:40AM DBG Fetching latest blocks from=346627 max=346626 to=346632 +9:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346632,"MaxBlockRetrieved":346632,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346637 PeerCount=6 +9:40AM DBG Fetching latest blocks from=346633 max=346632 to=346637 +9:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346637,"MaxBlockRetrieved":346637,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346643 PeerCount=6 +9:40AM DBG Fetching latest blocks from=346638 max=346637 to=346643 +9:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346643,"MaxBlockRetrieved":346643,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346648 PeerCount=6 +9:40AM DBG Fetching latest blocks from=346644 max=346643 to=346648 +9:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346648,"MaxBlockRetrieved":346648,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346653 PeerCount=6 +9:40AM DBG Fetching latest blocks from=346649 max=346648 to=346653 +9:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346653,"MaxBlockRetrieved":346648,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346659 PeerCount=6 +9:40AM DBG Fetching latest blocks from=346654 max=346653 to=346659 +9:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346659,"MaxBlockRetrieved":346659,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346664 PeerCount=6 +9:40AM DBG Fetching latest blocks from=346660 max=346659 to=346664 +9:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346664,"MaxBlockRetrieved":346664,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346670 PeerCount=6 +9:40AM DBG Fetching latest blocks from=346665 max=346664 to=346670 +9:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346670,"MaxBlockRetrieved":346670,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346675 PeerCount=6 +9:40AM DBG Fetching latest blocks from=346671 max=346670 to=346675 +9:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346675,"MaxBlockRetrieved":346675,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:40AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346680 PeerCount=6 +9:40AM DBG Fetching latest blocks from=346676 max=346675 to=346680 +9:40AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346680,"MaxBlockRetrieved":346680,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346686 PeerCount=6 +9:41AM DBG Fetching latest blocks from=346681 max=346680 to=346686 +9:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346686,"MaxBlockRetrieved":346686,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346691 PeerCount=6 +9:41AM DBG Fetching latest blocks from=346687 max=346686 to=346691 +9:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346691,"MaxBlockRetrieved":346691,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346697 PeerCount=6 +9:41AM DBG Fetching latest blocks from=346692 max=346691 to=346697 +9:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346697,"MaxBlockRetrieved":346697,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346702 PeerCount=6 +9:41AM DBG Fetching latest blocks from=346698 max=346697 to=346702 +9:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346702,"MaxBlockRetrieved":346702,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346707 PeerCount=6 +9:41AM DBG Fetching latest blocks from=346703 max=346702 to=346707 +9:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346707,"MaxBlockRetrieved":346707,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346713 PeerCount=6 +9:41AM DBG Fetching latest blocks from=346708 max=346707 to=346713 +9:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346713,"MaxBlockRetrieved":346707,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346718 PeerCount=6 +9:41AM DBG Fetching latest blocks from=346714 max=346713 to=346718 +9:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346718,"MaxBlockRetrieved":346718,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346724 PeerCount=6 +9:41AM DBG Fetching latest blocks from=346719 max=346718 to=346724 +9:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346724,"MaxBlockRetrieved":346724,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346729 PeerCount=6 +9:41AM DBG Fetching latest blocks from=346725 max=346724 to=346729 +9:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346729,"MaxBlockRetrieved":346729,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346734 PeerCount=6 +9:41AM DBG Fetching latest blocks from=346730 max=346729 to=346734 +9:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346734,"MaxBlockRetrieved":346734,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:41AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346740 PeerCount=6 +9:41AM DBG Fetching latest blocks from=346735 max=346734 to=346740 +9:41AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346740,"MaxBlockRetrieved":346740,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346745 PeerCount=6 +9:42AM DBG Fetching latest blocks from=346741 max=346740 to=346745 +9:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346745,"MaxBlockRetrieved":346745,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346751 PeerCount=6 +9:42AM DBG Fetching latest blocks from=346746 max=346745 to=346751 +9:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346751,"MaxBlockRetrieved":346751,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346756 PeerCount=6 +9:42AM DBG Fetching latest blocks from=346752 max=346751 to=346756 +9:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346756,"MaxBlockRetrieved":346756,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346761 PeerCount=6 +9:42AM DBG Fetching latest blocks from=346757 max=346756 to=346761 +9:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346761,"MaxBlockRetrieved":346761,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346767 PeerCount=6 +9:42AM DBG Fetching latest blocks from=346762 max=346761 to=346767 +9:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346767,"MaxBlockRetrieved":346767,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346772 PeerCount=6 +9:42AM DBG Fetching latest blocks from=346768 max=346767 to=346772 +9:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346772,"MaxBlockRetrieved":346767,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346778 PeerCount=6 +9:42AM DBG Fetching latest blocks from=346773 max=346772 to=346778 +9:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346778,"MaxBlockRetrieved":346778,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346783 PeerCount=6 +9:42AM DBG Fetching latest blocks from=346779 max=346778 to=346783 +9:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346783,"MaxBlockRetrieved":346778,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346788 PeerCount=6 +9:42AM DBG Fetching latest blocks from=346784 max=346783 to=346788 +9:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346788,"MaxBlockRetrieved":346788,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346794 PeerCount=6 +9:42AM DBG Fetching latest blocks from=346789 max=346788 to=346794 +9:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346794,"MaxBlockRetrieved":346794,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:42AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346799 PeerCount=6 +9:42AM DBG Fetching latest blocks from=346795 max=346794 to=346799 +9:42AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346799,"MaxBlockRetrieved":346799,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346805 PeerCount=6 +9:43AM DBG Fetching latest blocks from=346800 max=346799 to=346805 +9:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346805,"MaxBlockRetrieved":346805,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346810 PeerCount=6 +9:43AM DBG Fetching latest blocks from=346806 max=346805 to=346810 +9:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346810,"MaxBlockRetrieved":346810,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346815 PeerCount=6 +9:43AM DBG Fetching latest blocks from=346811 max=346810 to=346815 +9:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346815,"MaxBlockRetrieved":346815,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346821 PeerCount=6 +9:43AM DBG Fetching latest blocks from=346816 max=346815 to=346821 +9:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346821,"MaxBlockRetrieved":346821,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346826 PeerCount=6 +9:43AM DBG Fetching latest blocks from=346822 max=346821 to=346826 +9:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346826,"MaxBlockRetrieved":346821,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346835 PeerCount=6 +9:43AM DBG Fetching latest blocks from=346827 max=346826 to=346835 +9:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346835,"MaxBlockRetrieved":346835,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346840 PeerCount=6 +9:43AM DBG Fetching latest blocks from=346836 max=346835 to=346840 +9:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346840,"MaxBlockRetrieved":346840,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346845 PeerCount=6 +9:43AM DBG Fetching latest blocks from=346841 max=346840 to=346845 +9:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346845,"MaxBlockRetrieved":346845,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346851 PeerCount=6 +9:43AM DBG Fetching latest blocks from=346846 max=346845 to=346851 +9:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346851,"MaxBlockRetrieved":346851,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:43AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346856 PeerCount=6 +9:43AM DBG Fetching latest blocks from=346852 max=346851 to=346856 +9:43AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346856,"MaxBlockRetrieved":346856,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346862 PeerCount=6 +9:44AM DBG Fetching latest blocks from=346857 max=346856 to=346862 +9:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346862,"MaxBlockRetrieved":346862,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346867 PeerCount=6 +9:44AM DBG Fetching latest blocks from=346863 max=346862 to=346867 +9:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346867,"MaxBlockRetrieved":346867,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346872 PeerCount=6 +9:44AM DBG Fetching latest blocks from=346868 max=346867 to=346872 +9:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346872,"MaxBlockRetrieved":346867,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346878 PeerCount=6 +9:44AM DBG Fetching latest blocks from=346873 max=346872 to=346878 +9:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346878,"MaxBlockRetrieved":346878,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346883 PeerCount=6 +9:44AM DBG Fetching latest blocks from=346879 max=346878 to=346883 +9:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346883,"MaxBlockRetrieved":346883,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346889 PeerCount=6 +9:44AM DBG Fetching latest blocks from=346884 max=346883 to=346889 +9:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346889,"MaxBlockRetrieved":346889,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346894 PeerCount=6 +9:44AM DBG Fetching latest blocks from=346890 max=346889 to=346894 +9:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346894,"MaxBlockRetrieved":346894,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346899 PeerCount=6 +9:44AM DBG Fetching latest blocks from=346895 max=346894 to=346899 +9:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346899,"MaxBlockRetrieved":346899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346905 PeerCount=6 +9:44AM DBG Fetching latest blocks from=346900 max=346899 to=346905 +9:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346905,"MaxBlockRetrieved":346905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346910 PeerCount=6 +9:44AM DBG Fetching latest blocks from=346906 max=346905 to=346910 +9:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346910,"MaxBlockRetrieved":346910,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:44AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346916 PeerCount=6 +9:44AM DBG Fetching latest blocks from=346911 max=346910 to=346916 +9:44AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346916,"MaxBlockRetrieved":346916,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346921 PeerCount=6 +9:45AM DBG Fetching latest blocks from=346917 max=346916 to=346921 +9:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346921,"MaxBlockRetrieved":346916,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346926 PeerCount=6 +9:45AM DBG Fetching latest blocks from=346922 max=346921 to=346926 +9:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346926,"MaxBlockRetrieved":346926,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346932 PeerCount=6 +9:45AM DBG Fetching latest blocks from=346927 max=346926 to=346932 +9:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346932,"MaxBlockRetrieved":346932,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346937 PeerCount=6 +9:45AM DBG Fetching latest blocks from=346933 max=346932 to=346937 +9:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346937,"MaxBlockRetrieved":346937,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346943 PeerCount=6 +9:45AM DBG Fetching latest blocks from=346938 max=346937 to=346943 +9:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346943,"MaxBlockRetrieved":346943,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346948 PeerCount=6 +9:45AM DBG Fetching latest blocks from=346944 max=346943 to=346948 +9:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346948,"MaxBlockRetrieved":346948,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346954 PeerCount=6 +9:45AM DBG Fetching latest blocks from=346949 max=346948 to=346954 +9:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346954,"MaxBlockRetrieved":346954,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346959 PeerCount=6 +9:45AM DBG Fetching latest blocks from=346955 max=346954 to=346959 +9:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346959,"MaxBlockRetrieved":346954,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346964 PeerCount=6 +9:45AM DBG Fetching latest blocks from=346960 max=346959 to=346964 +9:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346964,"MaxBlockRetrieved":346964,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346970 PeerCount=6 +9:45AM DBG Fetching latest blocks from=346965 max=346964 to=346970 +9:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346970,"MaxBlockRetrieved":346970,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:45AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346975 PeerCount=6 +9:45AM DBG Fetching latest blocks from=346971 max=346970 to=346975 +9:45AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346975,"MaxBlockRetrieved":346975,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346981 PeerCount=6 +9:46AM DBG Fetching latest blocks from=346976 max=346975 to=346981 +9:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346981,"MaxBlockRetrieved":346981,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346986 PeerCount=6 +9:46AM DBG Fetching latest blocks from=346982 max=346981 to=346986 +9:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346986,"MaxBlockRetrieved":346986,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346992 PeerCount=6 +9:46AM DBG Fetching latest blocks from=346987 max=346986 to=346992 +9:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346992,"MaxBlockRetrieved":346992,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=346997 PeerCount=6 +9:46AM DBG Fetching latest blocks from=346993 max=346992 to=346997 +9:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346997,"MaxBlockRetrieved":346992,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:46AM TRC Unknown ui event id= +9:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346997,"MaxBlockRetrieved":346997,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:46AM TRC Unknown ui event id= +9:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":346997,"MaxBlockRetrieved":346997,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347002 PeerCount=6 +9:46AM DBG Fetching latest blocks from=346998 max=346997 to=347002 +9:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347002,"MaxBlockRetrieved":347002,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347008 PeerCount=6 +9:46AM DBG Fetching latest blocks from=347003 max=347002 to=347008 +9:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347008,"MaxBlockRetrieved":347008,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347013 PeerCount=6 +9:46AM DBG Fetching latest blocks from=347009 max=347008 to=347013 +9:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347013,"MaxBlockRetrieved":347013,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347019 PeerCount=6 +9:46AM DBG Fetching latest blocks from=347014 max=347013 to=347019 +9:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347019,"MaxBlockRetrieved":347019,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347024 PeerCount=6 +9:46AM DBG Fetching latest blocks from=347020 max=347019 to=347024 +9:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347024,"MaxBlockRetrieved":347024,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347029 PeerCount=6 +9:46AM DBG Fetching latest blocks from=347025 max=347024 to=347029 +9:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347029,"MaxBlockRetrieved":347029,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:46AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347035 PeerCount=6 +9:46AM DBG Fetching latest blocks from=347030 max=347029 to=347035 +9:46AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347035,"MaxBlockRetrieved":347035,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347040 PeerCount=6 +9:47AM DBG Fetching latest blocks from=347036 max=347035 to=347040 +9:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347040,"MaxBlockRetrieved":347040,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347045 PeerCount=6 +9:47AM DBG Fetching latest blocks from=347041 max=347040 to=347045 +9:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347045,"MaxBlockRetrieved":347045,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347051 PeerCount=6 +9:47AM DBG Fetching latest blocks from=347046 max=347045 to=347051 +9:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347051,"MaxBlockRetrieved":347051,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347056 PeerCount=6 +9:47AM DBG Fetching latest blocks from=347052 max=347051 to=347056 +9:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347056,"MaxBlockRetrieved":347056,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347062 PeerCount=6 +9:47AM DBG Fetching latest blocks from=347057 max=347056 to=347062 +9:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347062,"MaxBlockRetrieved":347062,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347067 PeerCount=6 +9:47AM DBG Fetching latest blocks from=347063 max=347062 to=347067 +9:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347067,"MaxBlockRetrieved":347067,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347073 PeerCount=6 +9:47AM DBG Fetching latest blocks from=347068 max=347067 to=347073 +9:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347073,"MaxBlockRetrieved":347067,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347078 PeerCount=6 +9:47AM DBG Fetching latest blocks from=347074 max=347073 to=347078 +9:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347078,"MaxBlockRetrieved":347078,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347084 PeerCount=6 +9:47AM DBG Fetching latest blocks from=347079 max=347078 to=347084 +9:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347084,"MaxBlockRetrieved":347084,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:47AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347089 PeerCount=6 +9:47AM DBG Fetching latest blocks from=347085 max=347084 to=347089 +9:47AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347089,"MaxBlockRetrieved":347089,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347095 PeerCount=6 +9:48AM DBG Fetching latest blocks from=347090 max=347089 to=347095 +9:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347095,"MaxBlockRetrieved":347095,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347100 PeerCount=6 +9:48AM DBG Fetching latest blocks from=347096 max=347095 to=347100 +9:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347100,"MaxBlockRetrieved":347095,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347105 PeerCount=6 +9:48AM DBG Fetching latest blocks from=347101 max=347100 to=347105 +9:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347105,"MaxBlockRetrieved":347105,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347111 PeerCount=6 +9:48AM DBG Fetching latest blocks from=347106 max=347105 to=347111 +9:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347111,"MaxBlockRetrieved":347111,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347116 PeerCount=6 +9:48AM DBG Fetching latest blocks from=347112 max=347111 to=347116 +9:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347116,"MaxBlockRetrieved":347116,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347122 PeerCount=6 +9:48AM DBG Fetching latest blocks from=347117 max=347116 to=347122 +9:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347122,"MaxBlockRetrieved":347122,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347127 PeerCount=6 +9:48AM DBG Fetching latest blocks from=347123 max=347122 to=347127 +9:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347127,"MaxBlockRetrieved":347127,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347132 PeerCount=6 +9:48AM DBG Fetching latest blocks from=347128 max=347127 to=347132 +9:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347132,"MaxBlockRetrieved":347132,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347138 PeerCount=6 +9:48AM DBG Fetching latest blocks from=347133 max=347132 to=347138 +9:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347138,"MaxBlockRetrieved":347138,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347143 PeerCount=6 +9:48AM DBG Fetching latest blocks from=347139 max=347138 to=347143 +9:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347143,"MaxBlockRetrieved":347143,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:48AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347149 PeerCount=6 +9:48AM DBG Fetching latest blocks from=347144 max=347143 to=347149 +9:48AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347149,"MaxBlockRetrieved":347149,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347154 PeerCount=6 +9:49AM DBG Fetching latest blocks from=347150 max=347149 to=347154 +9:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347154,"MaxBlockRetrieved":347154,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347159 PeerCount=6 +9:49AM DBG Fetching latest blocks from=347155 max=347154 to=347159 +9:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347159,"MaxBlockRetrieved":347154,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347165 PeerCount=6 +9:49AM DBG Fetching latest blocks from=347160 max=347159 to=347165 +9:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347165,"MaxBlockRetrieved":347165,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347170 PeerCount=6 +9:49AM DBG Fetching latest blocks from=347166 max=347165 to=347170 +9:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347170,"MaxBlockRetrieved":347170,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347176 PeerCount=6 +9:49AM DBG Fetching latest blocks from=347171 max=347170 to=347176 +9:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347176,"MaxBlockRetrieved":347176,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347181 PeerCount=6 +9:49AM DBG Fetching latest blocks from=347177 max=347176 to=347181 +9:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347181,"MaxBlockRetrieved":347181,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347187 PeerCount=6 +9:49AM DBG Fetching latest blocks from=347182 max=347181 to=347187 +9:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347187,"MaxBlockRetrieved":347181,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347197 PeerCount=6 +9:49AM DBG Fetching latest blocks from=347188 max=347187 to=347197 +9:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347197,"MaxBlockRetrieved":347197,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:49AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347205 PeerCount=6 +9:49AM DBG Fetching latest blocks from=347198 max=347197 to=347205 +9:49AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347205,"MaxBlockRetrieved":347197,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347215 PeerCount=6 +9:50AM DBG Fetching latest blocks from=347206 max=347205 to=347215 +9:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347215,"MaxBlockRetrieved":347205,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347221 PeerCount=6 +9:50AM DBG Fetching latest blocks from=347216 max=347215 to=347221 +9:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347221,"MaxBlockRetrieved":347221,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347227 PeerCount=6 +9:50AM DBG Fetching latest blocks from=347222 max=347221 to=347227 +9:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347227,"MaxBlockRetrieved":347227,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347232 PeerCount=6 +9:50AM DBG Fetching latest blocks from=347228 max=347227 to=347232 +9:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347232,"MaxBlockRetrieved":347232,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347238 PeerCount=6 +9:50AM DBG Fetching latest blocks from=347233 max=347232 to=347238 +9:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347238,"MaxBlockRetrieved":347238,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347243 PeerCount=6 +9:50AM DBG Fetching latest blocks from=347239 max=347238 to=347243 +9:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347243,"MaxBlockRetrieved":347243,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347248 PeerCount=6 +9:50AM DBG Fetching latest blocks from=347244 max=347243 to=347248 +9:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347248,"MaxBlockRetrieved":347248,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347254 PeerCount=6 +9:50AM DBG Fetching latest blocks from=347249 max=347248 to=347254 +9:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347254,"MaxBlockRetrieved":347254,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347259 PeerCount=6 +9:50AM DBG Fetching latest blocks from=347255 max=347254 to=347259 +9:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347259,"MaxBlockRetrieved":347259,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:50AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347265 PeerCount=6 +9:50AM DBG Fetching latest blocks from=347260 max=347259 to=347265 +9:50AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347265,"MaxBlockRetrieved":347259,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347270 PeerCount=6 +9:51AM DBG Fetching latest blocks from=347266 max=347265 to=347270 +9:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347270,"MaxBlockRetrieved":347270,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347275 PeerCount=6 +9:51AM DBG Fetching latest blocks from=347271 max=347270 to=347275 +9:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347275,"MaxBlockRetrieved":347275,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347281 PeerCount=6 +9:51AM DBG Fetching latest blocks from=347276 max=347275 to=347281 +9:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347281,"MaxBlockRetrieved":347281,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347286 PeerCount=6 +9:51AM DBG Fetching latest blocks from=347282 max=347281 to=347286 +9:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347286,"MaxBlockRetrieved":347286,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347291 PeerCount=6 +9:51AM DBG Fetching latest blocks from=347287 max=347286 to=347291 +9:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347291,"MaxBlockRetrieved":347291,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347297 PeerCount=6 +9:51AM DBG Fetching latest blocks from=347292 max=347291 to=347297 +9:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347297,"MaxBlockRetrieved":347297,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347302 PeerCount=6 +9:51AM DBG Fetching latest blocks from=347298 max=347297 to=347302 +9:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347302,"MaxBlockRetrieved":347302,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347308 PeerCount=6 +9:51AM DBG Fetching latest blocks from=347303 max=347302 to=347308 +9:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347308,"MaxBlockRetrieved":347308,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347313 PeerCount=6 +9:51AM DBG Fetching latest blocks from=347309 max=347308 to=347313 +9:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347313,"MaxBlockRetrieved":347313,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347318 PeerCount=6 +9:51AM DBG Fetching latest blocks from=347314 max=347313 to=347318 +9:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347318,"MaxBlockRetrieved":347318,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:51AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347324 PeerCount=6 +9:51AM DBG Fetching latest blocks from=347319 max=347318 to=347324 +9:51AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347324,"MaxBlockRetrieved":347318,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347329 PeerCount=6 +9:52AM DBG Fetching latest blocks from=347325 max=347324 to=347329 +9:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347329,"MaxBlockRetrieved":347329,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347335 PeerCount=6 +9:52AM DBG Fetching latest blocks from=347330 max=347329 to=347335 +9:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347335,"MaxBlockRetrieved":347335,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347340 PeerCount=6 +9:52AM DBG Fetching latest blocks from=347336 max=347335 to=347340 +9:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347340,"MaxBlockRetrieved":347340,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347345 PeerCount=6 +9:52AM DBG Fetching latest blocks from=347341 max=347340 to=347345 +9:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347345,"MaxBlockRetrieved":347345,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347351 PeerCount=6 +9:52AM DBG Fetching latest blocks from=347346 max=347345 to=347351 +9:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347351,"MaxBlockRetrieved":347351,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347356 PeerCount=6 +9:52AM DBG Fetching latest blocks from=347352 max=347351 to=347356 +9:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347356,"MaxBlockRetrieved":347356,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347362 PeerCount=6 +9:52AM DBG Fetching latest blocks from=347357 max=347356 to=347362 +9:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347362,"MaxBlockRetrieved":347362,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347367 PeerCount=6 +9:52AM DBG Fetching latest blocks from=347363 max=347362 to=347367 +9:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347367,"MaxBlockRetrieved":347367,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347372 PeerCount=6 +9:52AM DBG Fetching latest blocks from=347368 max=347367 to=347372 +9:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347372,"MaxBlockRetrieved":347372,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347378 PeerCount=6 +9:52AM DBG Fetching latest blocks from=347373 max=347372 to=347378 +9:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347378,"MaxBlockRetrieved":347378,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:52AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347383 PeerCount=6 +9:52AM DBG Fetching latest blocks from=347379 max=347378 to=347383 +9:52AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347383,"MaxBlockRetrieved":347378,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347389 PeerCount=6 +9:53AM DBG Fetching latest blocks from=347384 max=347383 to=347389 +9:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347389,"MaxBlockRetrieved":347389,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347394 PeerCount=6 +9:53AM DBG Fetching latest blocks from=347390 max=347389 to=347394 +9:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347394,"MaxBlockRetrieved":347394,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347400 PeerCount=6 +9:53AM DBG Fetching latest blocks from=347395 max=347394 to=347400 +9:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347400,"MaxBlockRetrieved":347394,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347405 PeerCount=6 +9:53AM DBG Fetching latest blocks from=347401 max=347400 to=347405 +9:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347405,"MaxBlockRetrieved":347405,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347411 PeerCount=6 +9:53AM DBG Fetching latest blocks from=347406 max=347405 to=347411 +9:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347411,"MaxBlockRetrieved":347411,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347416 PeerCount=6 +9:53AM DBG Fetching latest blocks from=347412 max=347411 to=347416 +9:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347416,"MaxBlockRetrieved":347416,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347421 PeerCount=6 +9:53AM DBG Fetching latest blocks from=347417 max=347416 to=347421 +9:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347421,"MaxBlockRetrieved":347421,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347427 PeerCount=6 +9:53AM DBG Fetching latest blocks from=347422 max=347421 to=347427 +9:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347427,"MaxBlockRetrieved":347427,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347432 PeerCount=6 +9:53AM DBG Fetching latest blocks from=347428 max=347427 to=347432 +9:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347432,"MaxBlockRetrieved":347432,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347438 PeerCount=6 +9:53AM DBG Fetching latest blocks from=347433 max=347432 to=347438 +9:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347438,"MaxBlockRetrieved":347438,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:53AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347443 PeerCount=6 +9:53AM DBG Fetching latest blocks from=347439 max=347438 to=347443 +9:53AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347443,"MaxBlockRetrieved":347443,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347448 PeerCount=6 +9:54AM DBG Fetching latest blocks from=347444 max=347443 to=347448 +9:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347448,"MaxBlockRetrieved":347448,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347454 PeerCount=6 +9:54AM DBG Fetching latest blocks from=347449 max=347448 to=347454 +9:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347454,"MaxBlockRetrieved":347454,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347459 PeerCount=6 +9:54AM DBG Fetching latest blocks from=347455 max=347454 to=347459 +9:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347459,"MaxBlockRetrieved":347459,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347465 PeerCount=6 +9:54AM DBG Fetching latest blocks from=347460 max=347459 to=347465 +9:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347465,"MaxBlockRetrieved":347465,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347470 PeerCount=6 +9:54AM DBG Fetching latest blocks from=347466 max=347465 to=347470 +9:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347470,"MaxBlockRetrieved":347470,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347476 PeerCount=6 +9:54AM DBG Fetching latest blocks from=347471 max=347470 to=347476 +9:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347476,"MaxBlockRetrieved":347470,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347481 PeerCount=6 +9:54AM DBG Fetching latest blocks from=347477 max=347476 to=347481 +9:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347481,"MaxBlockRetrieved":347481,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347486 PeerCount=6 +9:54AM DBG Fetching latest blocks from=347482 max=347481 to=347486 +9:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347486,"MaxBlockRetrieved":347486,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347492 PeerCount=6 +9:54AM DBG Fetching latest blocks from=347487 max=347486 to=347492 +9:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347492,"MaxBlockRetrieved":347492,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:54AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347497 PeerCount=6 +9:54AM DBG Fetching latest blocks from=347493 max=347492 to=347497 +9:54AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347497,"MaxBlockRetrieved":347497,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347503 PeerCount=6 +9:55AM DBG Fetching latest blocks from=347498 max=347497 to=347503 +9:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347503,"MaxBlockRetrieved":347503,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347508 PeerCount=6 +9:55AM DBG Fetching latest blocks from=347504 max=347503 to=347508 +9:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347508,"MaxBlockRetrieved":347508,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347513 PeerCount=6 +9:55AM DBG Fetching latest blocks from=347509 max=347508 to=347513 +9:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347513,"MaxBlockRetrieved":347513,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347519 PeerCount=6 +9:55AM DBG Fetching latest blocks from=347514 max=347513 to=347519 +9:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347519,"MaxBlockRetrieved":347519,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347524 PeerCount=6 +9:55AM DBG Fetching latest blocks from=347520 max=347519 to=347524 +9:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347524,"MaxBlockRetrieved":347519,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347530 PeerCount=6 +9:55AM DBG Fetching latest blocks from=347525 max=347524 to=347530 +9:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347530,"MaxBlockRetrieved":347530,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347536 PeerCount=6 +9:55AM DBG Fetching latest blocks from=347531 max=347530 to=347536 +9:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347536,"MaxBlockRetrieved":347530,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347543 PeerCount=6 +9:55AM DBG Fetching latest blocks from=347537 max=347536 to=347543 +9:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347543,"MaxBlockRetrieved":347543,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347548 PeerCount=6 +9:55AM DBG Fetching latest blocks from=347544 max=347543 to=347548 +9:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347548,"MaxBlockRetrieved":347548,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347553 PeerCount=6 +9:55AM DBG Fetching latest blocks from=347549 max=347548 to=347553 +9:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347553,"MaxBlockRetrieved":347553,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:55AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347559 PeerCount=6 +9:55AM DBG Fetching latest blocks from=347554 max=347553 to=347559 +9:55AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347559,"MaxBlockRetrieved":347559,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347564 PeerCount=6 +9:56AM DBG Fetching latest blocks from=347560 max=347559 to=347564 +9:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347564,"MaxBlockRetrieved":347564,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347570 PeerCount=6 +9:56AM DBG Fetching latest blocks from=347565 max=347564 to=347570 +9:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347570,"MaxBlockRetrieved":347570,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347575 PeerCount=6 +9:56AM DBG Fetching latest blocks from=347571 max=347570 to=347575 +9:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347575,"MaxBlockRetrieved":347575,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347581 PeerCount=6 +9:56AM DBG Fetching latest blocks from=347576 max=347575 to=347581 +9:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347581,"MaxBlockRetrieved":347575,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347586 PeerCount=6 +9:56AM DBG Fetching latest blocks from=347582 max=347581 to=347586 +9:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347586,"MaxBlockRetrieved":347586,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347591 PeerCount=6 +9:56AM DBG Fetching latest blocks from=347587 max=347586 to=347591 +9:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347591,"MaxBlockRetrieved":347591,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347597 PeerCount=6 +9:56AM DBG Fetching latest blocks from=347592 max=347591 to=347597 +9:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347597,"MaxBlockRetrieved":347597,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347602 PeerCount=6 +9:56AM DBG Fetching latest blocks from=347598 max=347597 to=347602 +9:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347602,"MaxBlockRetrieved":347602,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347608 PeerCount=6 +9:56AM DBG Fetching latest blocks from=347603 max=347602 to=347608 +9:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347608,"MaxBlockRetrieved":347608,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347613 PeerCount=6 +9:56AM DBG Fetching latest blocks from=347609 max=347608 to=347613 +9:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347613,"MaxBlockRetrieved":347613,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:56AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347618 PeerCount=6 +9:56AM DBG Fetching latest blocks from=347614 max=347613 to=347618 +9:56AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347618,"MaxBlockRetrieved":347618,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347624 PeerCount=6 +9:57AM DBG Fetching latest blocks from=347619 max=347618 to=347624 +9:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347624,"MaxBlockRetrieved":347624,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347629 PeerCount=6 +9:57AM DBG Fetching latest blocks from=347625 max=347624 to=347629 +9:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347629,"MaxBlockRetrieved":347629,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347635 PeerCount=6 +9:57AM DBG Fetching latest blocks from=347630 max=347629 to=347635 +9:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347635,"MaxBlockRetrieved":347635,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347640 PeerCount=6 +9:57AM DBG Fetching latest blocks from=347636 max=347635 to=347640 +9:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347640,"MaxBlockRetrieved":347640,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347645 PeerCount=6 +9:57AM DBG Fetching latest blocks from=347641 max=347640 to=347645 +9:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347645,"MaxBlockRetrieved":347645,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347651 PeerCount=6 +9:57AM DBG Fetching latest blocks from=347646 max=347645 to=347651 +9:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347651,"MaxBlockRetrieved":347645,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347656 PeerCount=6 +9:57AM DBG Fetching latest blocks from=347652 max=347651 to=347656 +9:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347656,"MaxBlockRetrieved":347656,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347661 PeerCount=6 +9:57AM DBG Fetching latest blocks from=347657 max=347656 to=347661 +9:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347661,"MaxBlockRetrieved":347656,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347667 PeerCount=6 +9:57AM DBG Fetching latest blocks from=347662 max=347661 to=347667 +9:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347667,"MaxBlockRetrieved":347667,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:57AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347672 PeerCount=6 +9:57AM DBG Fetching latest blocks from=347668 max=347667 to=347672 +9:57AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347672,"MaxBlockRetrieved":347672,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347678 PeerCount=6 +9:58AM DBG Fetching latest blocks from=347673 max=347672 to=347678 +9:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347678,"MaxBlockRetrieved":347678,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347683 PeerCount=6 +9:58AM DBG Fetching latest blocks from=347679 max=347678 to=347683 +9:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347683,"MaxBlockRetrieved":347683,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347688 PeerCount=6 +9:58AM DBG Fetching latest blocks from=347684 max=347683 to=347688 +9:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347688,"MaxBlockRetrieved":347688,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347694 PeerCount=6 +9:58AM DBG Fetching latest blocks from=347689 max=347688 to=347694 +9:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347694,"MaxBlockRetrieved":347694,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347699 PeerCount=6 +9:58AM DBG Fetching latest blocks from=347695 max=347694 to=347699 +9:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347699,"MaxBlockRetrieved":347699,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347705 PeerCount=6 +9:58AM DBG Fetching latest blocks from=347700 max=347699 to=347705 +9:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347705,"MaxBlockRetrieved":347705,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347710 PeerCount=6 +9:58AM DBG Fetching latest blocks from=347706 max=347705 to=347710 +9:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347710,"MaxBlockRetrieved":347710,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347715 PeerCount=6 +9:58AM DBG Fetching latest blocks from=347711 max=347710 to=347715 +9:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347715,"MaxBlockRetrieved":347715,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347721 PeerCount=6 +9:58AM DBG Fetching latest blocks from=347716 max=347715 to=347721 +9:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347721,"MaxBlockRetrieved":347715,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347726 PeerCount=6 +9:58AM DBG Fetching latest blocks from=347722 max=347721 to=347726 +9:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347726,"MaxBlockRetrieved":347726,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:58AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347732 PeerCount=6 +9:58AM DBG Fetching latest blocks from=347727 max=347726 to=347732 +9:58AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347732,"MaxBlockRetrieved":347732,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347737 PeerCount=6 +9:59AM DBG Fetching latest blocks from=347733 max=347732 to=347737 +9:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347737,"MaxBlockRetrieved":347737,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347743 PeerCount=6 +9:59AM DBG Fetching latest blocks from=347738 max=347737 to=347743 +9:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347743,"MaxBlockRetrieved":347743,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347748 PeerCount=6 +9:59AM DBG Fetching latest blocks from=347744 max=347743 to=347748 +9:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347748,"MaxBlockRetrieved":347748,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347754 PeerCount=6 +9:59AM DBG Fetching latest blocks from=347749 max=347748 to=347754 +9:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347754,"MaxBlockRetrieved":347754,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347759 PeerCount=6 +9:59AM DBG Fetching latest blocks from=347755 max=347754 to=347759 +9:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347759,"MaxBlockRetrieved":347759,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347765 PeerCount=6 +9:59AM DBG Fetching latest blocks from=347760 max=347759 to=347765 +9:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347765,"MaxBlockRetrieved":347765,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347770 PeerCount=6 +9:59AM DBG Fetching latest blocks from=347766 max=347765 to=347770 +9:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347770,"MaxBlockRetrieved":347770,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347775 PeerCount=6 +9:59AM DBG Fetching latest blocks from=347771 max=347770 to=347775 +9:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347775,"MaxBlockRetrieved":347770,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347781 PeerCount=6 +9:59AM DBG Fetching latest blocks from=347776 max=347775 to=347781 +9:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347781,"MaxBlockRetrieved":347781,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347786 PeerCount=6 +9:59AM DBG Fetching latest blocks from=347782 max=347781 to=347786 +9:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347786,"MaxBlockRetrieved":347786,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +9:59AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347792 PeerCount=6 +9:59AM DBG Fetching latest blocks from=347787 max=347786 to=347792 +9:59AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347792,"MaxBlockRetrieved":347792,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347797 PeerCount=6 +10:00AM DBG Fetching latest blocks from=347793 max=347792 to=347797 +10:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347797,"MaxBlockRetrieved":347797,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347802 PeerCount=6 +10:00AM DBG Fetching latest blocks from=347798 max=347797 to=347802 +10:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347802,"MaxBlockRetrieved":347802,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347808 PeerCount=6 +10:00AM DBG Fetching latest blocks from=347803 max=347802 to=347808 +10:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347808,"MaxBlockRetrieved":347808,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347813 PeerCount=6 +10:00AM DBG Fetching latest blocks from=347809 max=347808 to=347813 +10:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347813,"MaxBlockRetrieved":347813,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347818 PeerCount=6 +10:00AM DBG Fetching latest blocks from=347814 max=347813 to=347818 +10:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347818,"MaxBlockRetrieved":347818,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347824 PeerCount=6 +10:00AM DBG Fetching latest blocks from=347819 max=347818 to=347824 +10:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347824,"MaxBlockRetrieved":347824,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347829 PeerCount=6 +10:00AM DBG Fetching latest blocks from=347825 max=347824 to=347829 +10:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347829,"MaxBlockRetrieved":347829,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347835 PeerCount=6 +10:00AM DBG Fetching latest blocks from=347830 max=347829 to=347835 +10:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347835,"MaxBlockRetrieved":347829,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347840 PeerCount=6 +10:00AM DBG Fetching latest blocks from=347836 max=347835 to=347840 +10:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347840,"MaxBlockRetrieved":347840,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347845 PeerCount=6 +10:00AM DBG Fetching latest blocks from=347841 max=347840 to=347845 +10:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347845,"MaxBlockRetrieved":347845,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:00AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347851 PeerCount=6 +10:00AM DBG Fetching latest blocks from=347846 max=347845 to=347851 +10:00AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347851,"MaxBlockRetrieved":347851,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347856 PeerCount=6 +10:01AM DBG Fetching latest blocks from=347852 max=347851 to=347856 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347856,"MaxBlockRetrieved":347856,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347862 PeerCount=6 +10:01AM DBG Fetching latest blocks from=347857 max=347856 to=347862 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347862,"MaxBlockRetrieved":347862,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347867 PeerCount=6 +10:01AM DBG Fetching latest blocks from=347863 max=347862 to=347867 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347867,"MaxBlockRetrieved":347867,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347872 PeerCount=6 +10:01AM DBG Fetching latest blocks from=347868 max=347867 to=347872 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347872,"MaxBlockRetrieved":347872,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347878 PeerCount=6 +10:01AM DBG Fetching latest blocks from=347873 max=347872 to=347878 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347878,"MaxBlockRetrieved":347878,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347883 PeerCount=6 +10:01AM DBG Fetching latest blocks from=347879 max=347878 to=347883 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347883,"MaxBlockRetrieved":347883,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347889 PeerCount=6 +10:01AM DBG Fetching latest blocks from=347884 max=347883 to=347889 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347889,"MaxBlockRetrieved":347889,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347894 PeerCount=6 +10:01AM DBG Fetching latest blocks from=347890 max=347889 to=347894 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347894,"MaxBlockRetrieved":347894,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347899 PeerCount=6 +10:01AM DBG Fetching latest blocks from=347895 max=347894 to=347899 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=1 windowOffset=99 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334356 +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Down allBlocks=100 currIdx=1 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334367 +10:01AM DBG Down allBlocks=100 currIdx=2 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334366 +10:01AM DBG Down allBlocks=100 currIdx=3 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334365 +10:01AM DBG Down allBlocks=100 currIdx=4 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334364 +10:01AM DBG Down allBlocks=100 currIdx=5 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334363 +10:01AM DBG Down allBlocks=100 currIdx=6 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334362 +10:01AM DBG Down allBlocks=100 currIdx=7 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334361 +10:01AM DBG Down allBlocks=100 currIdx=8 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334360 +10:01AM DBG Down allBlocks=100 currIdx=9 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334359 +10:01AM DBG Down allBlocks=100 currIdx=10 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334358 +10:01AM DBG Down allBlocks=100 currIdx=11 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334357 +10:01AM DBG Down allBlocks=100 currIdx=12 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347899,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334356 +10:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347905 PeerCount=6 +10:01AM DBG Fetching latest blocks from=347900 max=347899 to=347905 +10:01AM DBG Down allBlocks=100 currIdx=13 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347899,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334356 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Down allBlocks=100 currIdx=13 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334356 +10:01AM DBG Down allBlocks=100 currIdx=13 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334356 +10:01AM DBG Down allBlocks=100 currIdx=13 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334356 +10:01AM DBG Down allBlocks=100 currIdx=13 dy=35 renderedBlocks=13 windowOffset=87 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334356 +10:01AM DBG Up currIdx=13 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334357 +10:01AM DBG Up currIdx=12 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334358 +10:01AM DBG Up currIdx=11 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334359 +10:01AM DBG Up currIdx=10 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334360 +10:01AM DBG Up currIdx=9 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334361 +10:01AM DBG Up currIdx=8 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334362 +10:01AM DBG Up currIdx=7 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334363 +10:01AM DBG Up currIdx=6 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334364 +10:01AM DBG Up currIdx=5 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334365 +10:01AM DBG Up currIdx=4 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334366 +10:01AM DBG Up currIdx=3 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334367 +10:01AM DBG Up currIdx=2 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334368 +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Up currIdx=1 windowSize=31 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334056,"PeerCount":6,"PendingCount":0} +10:01AM DBG Fetching older blocks from=334006 min=334056 to=334055 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347905,"MaxBlockRetrieved":347905,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:01AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347910 PeerCount=6 +10:01AM DBG Fetching latest blocks from=347906 max=347905 to=347910 +10:01AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:01AM DBG Selected block changed blockNumber=334006 +10:02AM DBG Up currIdx=2 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Selected block changed blockNumber=334007 +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347910,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347915 PeerCount=6 +10:02AM DBG Fetching latest blocks from=347911 max=347910 to=347915 +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347915,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347915,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347915,"MaxBlockRetrieved":347910,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Fetching older blocks from=333956 min=334006 to=334005 +10:02AM DBG Up currIdx=1 windowSize=31 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347915,"MaxBlockRetrieved":347915,"MinBlockRetrieved":334006,"PeerCount":6,"PendingCount":0} +10:02AM DBG Fetching older blocks from=333906 min=333956 to=333955 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347915,"MaxBlockRetrieved":347915,"MinBlockRetrieved":333906,"PeerCount":6,"PendingCount":0} +10:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347921 PeerCount=6 +10:02AM DBG Fetching latest blocks from=347916 max=347915 to=347921 +10:02AM DBG Fetching older blocks from=333856 min=333906 to=333905 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347921,"MaxBlockRetrieved":347921,"MinBlockRetrieved":333906,"PeerCount":6,"PendingCount":0} +10:02AM DBG Selected block changed blockNumber=333906 +10:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347927 PeerCount=6 +10:02AM DBG Fetching latest blocks from=347922 max=347921 to=347927 +10:02AM DBG Fetching older blocks from=333806 min=333856 to=333855 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347927,"MaxBlockRetrieved":347927,"MinBlockRetrieved":333806,"PeerCount":6,"PendingCount":0} +10:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347932 PeerCount=6 +10:02AM DBG Fetching latest blocks from=347928 max=347927 to=347932 +10:02AM DBG Fetching older blocks from=333756 min=333806 to=333805 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347932,"MaxBlockRetrieved":347932,"MinBlockRetrieved":333756,"PeerCount":6,"PendingCount":0} +10:02AM DBG Fetching blocks ChainID=2001 GasPrice=1000000007 HeadBlock=347938 PeerCount=6 +10:02AM DBG Fetching latest blocks from=347933 max=347932 to=347938 +10:02AM DBG Fetching older blocks from=333706 min=333756 to=333755 +10:02AM DBG Redrawing ms={"BlockCache":{},"ChainID":2001,"GasPrice":1000000007,"HeadBlock":347938,"MaxBlockRetrieved":347938,"MinBlockRetrieved":333706,"PeerCount":6,"PendingCount":0}